Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Guys,
I am having a column called "Station" which contains value as below:
Station |
R01 |
R98 |
UPS |
LUX |
AAH |
RGB |
RT1 |
R97 |
R12 |
R34 |
Now I want to fetch the values with alphabet starts with 'R' along with numeric values after it like
output:
Station |
R01 |
R98 |
R97 |
R12 |
R34 |
May thanks in advance!!
Try this?
If(Left(String,1)='R' and IsNum(Mid(String,2)), String) as Output
Hope this can help you.
Table_A:
Load*
From XXX
where wildmatch(Station,'R*');
Hi Reon,
this will return RGB and RT1 as well.
Output as below :
Station
RGB
RT1
R01
R98
R97
R12
R34
Thanks Edvin!!
Its working fine but it will consider the fields like as below
R2T,
R9U etc
I need values after R in numeric only. if you know any solution then please let me know.
Try this?
If(Left(String,1)='R' and IsNum(Mid(String,2)), String) as Output
You can try this below.
Table_A:
Load*
From XXX
where wildmatch(Station,'R*') and IsNum(Mid(Station,2));
Thank you so much Tresesco!
It works absolutely fine.
@nikita23 I know you received your answer but I would still like to move this into the correct product forum. Are you using QlikView? I just want to confirm before I move this. Thanks
Hi,
I am using QlikSense.