Hi Folks,
While data cleaning using the power query, I came across a situation where a column contains both text and numerical values. I want to add an additional column that states which one is number or text. In Excel, we have ISNUMBER() or ISTEXT(). Do we have any alternative in Power Query? Below is an Excel screenshot, an alternative of which want in Power Query.
Solved! Go to Solution.
@Anonymous
like what @CNENFRNL suggested, you can try
if Value.Is([data],type number)
then "Number"
else "Text"
Proud to be a Super User!
@Anonymous
like what @CNENFRNL suggested, you can try
if Value.Is([data],type number)
then "Number"
else "Text"
Proud to be a Super User!
Hi,
It is not working when you have column type text - then results is always Text,
It works when you first get valuefrom text, and then check type.
Hi, @Anonymous , you may try Vaue.Is function,
https://docs.microsoft.com/en-us/powerquery-m/value-is
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |