I'm looking for a formula that will parse a comma delimited field.
I think I have the first formula-> Class: IIf(InStr(1,[ASSET.DESCRIPTION],",")=0,[ASSET.DESCRIPTION],Left([ASSET.DESCRIPTION],InStr(1,[ASSET.DESCRIPTION],",")-1))
I am struggling with the other 2 formulas.
My data with 3 example rows of data-
DESCRIPTION field-
WATER HEATER, 3 PH
DEAERATOR,
DETECTOR, SMOKE, DUCT, FIRE ALARM SYSTEM
First Description-
First word should be: WATER HEATER
First word should be: DEAERATOR
First word should be: DETECTOR
Thanks tav
I think I have the first formula-> Class: IIf(InStr(1,[ASSET.DESCRIPTION],",")=0,[ASSET.DESCRIPTION],Left([ASSET.DESCRIPTION],InStr(1,[ASSET.DESCRIPTION],",")-1))
I am struggling with the other 2 formulas.
My data with 3 example rows of data-
DESCRIPTION field-
WATER HEATER, 3 PH
DEAERATOR,
DETECTOR, SMOKE, DUCT, FIRE ALARM SYSTEM
First Description-
First word should be: WATER HEATER
Second word should be: 3 PH
Third word should be: blank
Second Description-First word should be: DEAERATOR
Second word should be: blank
Third word should be: blank
Third Description-First word should be: DETECTOR
Second word should be: SMOKE
Third word should be: DUCT
Thanks tav