I am working on a formula to select data based on a text filed is the following conditions are true :
GAMMA\abc123 or GAMMA\abc1234
Where: “GAMMA\” is a constant
“abc” represents a group of three characters that can vary
“123” and “1234” represnt a grouping of numbers that can vary
I have tried using the IN and LIKE functions as follows and in several variations
({Table.name} LIKE “*GAMMA\???###*”) OR ({Table.name} LIKE “*GAMMA\???####*”)
({Table.name} IN [“*GAMMA\???###*”]) OR ({Table.name} IN [“*GAMMA\???####*”)]
Only {Table.name} LIKE “*GAMMA*” returns any data… but of course too much.
{Table.name} LIKE “*GAMMA\*” returns no data at all.
All help on this issue very welcome.
GAMMA\abc123 or GAMMA\abc1234
Where: “GAMMA\” is a constant
“abc” represents a group of three characters that can vary
“123” and “1234” represnt a grouping of numbers that can vary
I have tried using the IN and LIKE functions as follows and in several variations
({Table.name} LIKE “*GAMMA\???###*”) OR ({Table.name} LIKE “*GAMMA\???####*”)
({Table.name} IN [“*GAMMA\???###*”]) OR ({Table.name} IN [“*GAMMA\???####*”)]
Only {Table.name} LIKE “*GAMMA*” returns any data… but of course too much.
{Table.name} LIKE “*GAMMA\*” returns no data at all.
All help on this issue very welcome.