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] )
omikeyz
2 years agoHelper I
All I did was to create a new column
1 Material_T = Materials[Material]
and I formatted that field as a text. Then I can use the search Text in my visuals rather than using a filter for 50,000 numbers. it works fine.