Forum Discussion
Anonymous
10 years agoNot applicable
DAX function for converting a number into a string?
I have a string (url) and a number (pagination), I need to concatenate them into a resulting URL. I have search and looked at the VALUE and FORMAT dax functions but can't make it work in convert...
- Anonymous10 years ago
Thanks, ended up using Text.From( [Counter] )
v-haibl-msft
10 years agoMicrosoft Employee
Anonymous
You can also do the concatenation by “Merge Columns” in Query Editor. Select these two columns and click “Merge Columns”.
Best Regards,
Herbert
rafaeloureirosm
9 years agoAdvocate I
= "Text" & Number.ToText(Number)
- joopiest9 years agoFrequent Visitor
Wow, That's pretty easy.
Thanks