Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello
I have a calculated column in my table created by this code:
With this calculated column I can filter all rows that are different from "false" and get only the rows I want. I would like to create a new separate table with only those rows other than "false". How can I do this?
Solved! Go to Solution.
You might want to try,
Filtered Table = CALCUALTABLE ( Assemk, Assemk[FilterCol] <> False )
To some extent, such a calculated table is not that necessary as you may use CALCUALTABLE ( Assemk, Assemk[FilterCol] <> False ) as filter modifier in most DAX measures.
| 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! |
You might want to try,
Filtered Table = CALCUALTABLE ( Assemk, Assemk[FilterCol] <> False )
To some extent, such a calculated table is not that necessary as you may use CALCUALTABLE ( Assemk, Assemk[FilterCol] <> False ) as filter modifier in most DAX measures.
| 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! |
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.