This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I have created a column that previously was defined as TExt. But I wanted to switch it to Number once I had resolved the data type conflicts.
The problem is that the column header says its number format but the contents is displayed as Text and the next steps is trying to filter numbers and it fails complaining that it can't apply '>' operator to type number and text operands.
Here's the instruction that is producing the new column:
Table.AddColumn(#"Trimmed text", "CldStartYear", each Text.Start([DLL1TX], 4), Int64.Type)And here's the result which in this case, the column on the left is not showing up content as numeric even though the header says it is :
And when I try this:
Table.SelectRows(addcol_CldEndYear, each [CldStartYear] >= 2021)I got this error:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.