Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi
i have one filed like Data:
0-5
5-10
10-15
20-25
25-30
30- 35
];
my output like 0-15 only
Hi,
Use this dimension or script
Ex: =if(SubField(Range,'-',2)<=15,Dual('0-15',Range)) .
Find the attached file
Hi,
Use this dimension or script
Ex: =if(SubField(Range,'-',2)<=15,Dual('0-15',Range)) .
Find the attached file
Hi ,
Please use the below code in the where clause while loading the table.
Where (SubField(Data,'-',1)>=0) and (SubField(Data,'-',2)<=15);
Regards
Yusuf
Thanks