Link to home
Start Free TrialLog in
Avatar of Gareth McKee
Gareth McKeeFlag for Canada

asked on

Excel IF/THEN for several outcome

Hi,

I would like a formula to provide several outcomes depending upon the entry in another column.

so...... column B will have types of business eg clinic, chiropractor, dentist etc etc

I would like column C to auto enter a web address for landing pages eg www.domain.com/clinic, www.domain.com/chiropractor, www.domain.com/dentist etc etc

Is this possible?

TIA
Gareth
Avatar of Subodh Tiwari (Neeraj)
Subodh Tiwari (Neeraj)
Flag of India image

Try this in C2

="www.domain.com/"&B2

Open in new window

and copy down.
Avatar of Gareth McKee

ASKER

hi sktneer, sorry but that did not work for me. it only shows the text I have entered.
You need to apply that formula in C2..

SO in C2 it will say..

="www.domain.com/"&B2

Now if you need to build hyperlink to it then it will say...

=HYPERLINK("www.domain.com/"&B2,B2)

Saurabh...
ASKER CERTIFIED SOLUTION
Avatar of Subodh Tiwari (Neeraj)
Subodh Tiwari (Neeraj)
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thank you.
You're welcome. :)