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
Hi guys,
Can you please help me with column cleaning. It has two data types ( int and text) and some blanks. I just want to keep them integers. Can you please help me writing Dax Querry.
Many Thanks, C
| Column A |
| 12 |
| 10 |
| 20 |
| A |
| B |
| C |
| 50 |
Solved! Go to Solution.
@Anonymous you can write a measure like this
Measure =
CALCULATE (
MAX ( 'Table 1'[Column A] ),
FILTER (
'Table 1',
IFERROR ( CONVERT ( 'Table 1'[Column A], INTEGER ), -999 )
= IFERROR ( 'Table 1'[Column A] * 1, 0 )
)
)
@Anonymous you can write a measure like this
Measure =
CALCULATE (
MAX ( 'Table 1'[Column A] ),
FILTER (
'Table 1',
IFERROR ( CONVERT ( 'Table 1'[Column A], INTEGER ), -999 )
= IFERROR ( 'Table 1'[Column A] * 1, 0 )
)
)
@Anonymous did you have a chance to look into the solution I provided?
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.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 17 | |
| 8 | |
| 8 | |
| 7 |