Find in UDF VBA

  • Thread starter Thread starter caveman.savant
  • Start date Start date
C

caveman.savant

I'm working on a UDF that looks at several cell values...

if value starts with "B" in cell in column B then set variable "map"
to variable "default" if
"SHORT", "SHT" is in the cell in column G
or "G345" or "G231" is exactly in column B.

else set variable "msp" to variable 1
 
A UDF must return a single value, otherwise it becomes a procedure and needs
the Sub keywork vs the Function keyword in the title line.
 
Since there does not seem to be a question here I will just say... go ahead
and do that. Sounds good to me...
 
I'm working on a UDF that looks at several cell values...

if value starts with "B" in cell in column B then set variable "map"
to variable "default" if
 "SHORT", "SHT" is in the cell in column  G
or "G345" or "G231" is exactly in column B.

else set variable "msp" to variable 1

sorry I wasn't clear...
basically looking for a way to find "SHORT", or "SHT" in a cell value.
 
Back
Top