Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a field which is having values like
1CA
2HMI
3CA HMI
4CLASSIC PANNEL
5CONTROL PANEL
63K5RGTL
Now , i want to remove or hide first numbers of the value like 1,2,3,4 till 8 in the reports.
Please help me on this.
Regards,
Ramesh
Perhaps this way
=' '& GetFieldSelections(Mid(NODE, 2))
What you want output for below regards? Ex: "63K5RGTL"
Hi Anil,
I want results be like below,
CA
HMI
CA HMI
CLASSIC PANNEL
CONTROL PANEL
3K5RGTL
Ramesh
Hi All,
Any suggestions on this ?
Load *, if(isnum(left(F1,1)) and left(F1,1)<=8 ,replace(F1,left(F1,1),null()),F1) as test;
LOAD * INLINE [
F1
1CA
2HMI
3CA HMI
4CLASSIC PANNEL
5CONTROL PANEL
63K5RGTL
9JZZE
];
Hi Frank_Hartmann,
I want to do this in the frontend report.
and the below are the values not the fields.
1CA
2HMI
3CA HMI
4CLASSIC PANNEL
5CONTROL PANEL
63K5RGTL
9JZZE
How about this?
Load Input, Mid(Input, 2) as Output From Table;
Hi Anil,
i am using
=' '& GetFieldSelections(NODE) this expression in the Text Object, now i want to remove starting numbers from the NODE field.
Perhaps this way
=' '& GetFieldSelections(Mid(NODE, 2))