The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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?
User | Count |
---|---|
16 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
8 | |
8 |