Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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?
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.