Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all. I got a problem. I'm new to Qlikview but I would like to know if there is some way to edit the number format when it has already been put into Qlikview as i do not have the raw data anymore. If so, please explain how but remember as I mentioned, I am new to Qlikview
Thanks so much
chris@obi.co.za
Hi,
123456789 to (012) 345-6789
='(0'&Left(PhoneNumber,2)&') '&Mid(PhoneNumber,3,3)&'-'&
Right(PhoneNumber,Len(PhoneNumber)-5)
Hello Chris,
You may use within a chart or as calculated dimension something like (example)
Num(PhoneNumberField, '(##) ## - ####')
Hope that helps
Hey man.
Thanks for the reply but unfortunately I've tried that and it doesn't work. Got any other ideas?
Chris,
I was wrong then, you will have to divide your figure, kind of
='(' & Left(PhoneField, 2) & ') ' & Mid(PhoneField, 3, 3) & ' - ' & Right(PhoneField, 4)
Miguel
Nope thats also not working. Theres no numbers at all only brackets.
Hi
='(' & left(PhoneNumber,2) & ') ' & right(left(PhoneNumber,4),2) & ' ' & right(left(PhoneNumber,6),2) & ' - ' & right(left(PhoneNumber,10),4)
Will change 1234567890 (12) 34 56-7890
Anders
Hi Ansch
Well that worked. Thanks for the help
Theres just on more lil issue with that formula though, it makes a double of the 7th number and cnt seem to get it to subtract one. got any ideas?
Thanks
Hello,
Can you please show us one original phone number and how the result would look like? It would be very useful.