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 trying to create a measure that count all rows that does not start with 1 but also excludes blank entries I have a sample quick measure I made which is wrong
Count of LEG-1 If does not start with 1=
CALCULATE(
COUNTA('Dispatch Total'[LEG-1]),
'Dispatch Total'[LEG-1] IN { "1" }
)
By the way, you may take a look at https://www.sqlbi.com/articles/blank-handling-in-dax/.
Try with following
Count of LEG-1 If does not start with 1 =
CALCULATE (
COUNT ( 'Dispatch Total'[LEG-1] ),
NOT 'Dispatch Total'[LEG-1] IN { "1", BLANK () }
)
DId I do something wrong it is counting its that start with 1
You'll need to use LEFT first.
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.