Joining/Linking nested formulas

A

Aikisteve

How do you link nested formulas. I have

=IF(A1="Red",HYPERLINK("C:\Documents and
Settings\Mullinss\Desktop\Red","Red"))

This works fine, but i want the same to apply, in the same cell, if the
word in A1 is Yellow, Blue Green Etc
 
A

Ardus Petus

=HYPERLINK("C:\Documents and Settings\Mullinss\Desktop\"&A1,A1)

No error checking!

HTH
 
Top