Forum Discussion
aakashlakhani
8 years agoFrequent Visitor
Power BI Transform Phone Number
Hi I have a dataset contains phone numbers. I need to remove the 3 digits and space for a row to transform it to a standard using Power BI. Can anyone help on this. Phone Numbers Results ...
- 8 years ago
Hi,
You can try something like:
Result = RIGHT([Phone Numbers],12)
this shall get 12 charecters (10 number , and - twice)
Hope this shall fix your issue.
If this solves your concer, kindly approve this as solution and also a thumps up :)
Regards,
Praisely
praiselyabraham
8 years agoResolver II
Hi,
You can try something like:
Result = RIGHT([Phone Numbers],12)
this shall get 12 charecters (10 number , and - twice)
Hope this shall fix your issue.
If this solves your concer, kindly approve this as solution and also a thumps up :)
Regards,
Praisely
aakashlakhani
8 years agoFrequent Visitor
Thanks