Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How do i convert the following excel formula into Qliksense when adding a calculated field. For this purpose, A1 is in the field "Mobile". Im essentially trying to format a field of mobile numbers to have no spaces and no '0' at the front
=IFERROR(VALUE(SUBSTITUTE(A1," ","")),"")
Thanks for your help!
Hi,
Try this:
Num(Replace(A1,' ',''))
Excel uses double qoutes, where as Qlik uses single quotes.
Jordy
Climber
Hi,
Try this:
Num(Replace(A1,' ',''))
Excel uses double qoutes, where as Qlik uses single quotes.
Jordy
Climber
If i understand correctly, Perhaps this?
If(IsNum(Replace(A1, ' ', '')), A1, 'Error') as A1
You can also try to use purge char function
Thank you!