Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi there, I have a measure that sums up a column and will only return one or two values depending on the IF statement, as you can see below:
Hidden Vacancies Rule = IF(sum(pro_vacancy[va_hidden]) >= 1, 0, 100)
If the value is greater than 1 then a score 0 will be returned, if it's less then 100 is returned. This is working correctly, however, the default is always a 100 if there are blank rows.
I've tried adding a ISBLANK function but it won't allow me to reference the [va_hidden] column.
How do I make the outcome 0 if there's no rows to sum in the [va_hidden] column?
Solved! Go to Solution.
hi @Anonymous ,
try like:
Hidden Vacancies Rule = IF(sum(pro_vacancy[va_hidden]) <= 1, 100, 0)
or
Hidden Vacancies Rule = IF(sum(pro_vacancy[va_hidden]) >= 1 || ISBLANK(sum(pro_vacancy[va_hidden])), 0, 100)
hi @Anonymous ,
try like:
Hidden Vacancies Rule = IF(sum(pro_vacancy[va_hidden]) <= 1, 100, 0)
or
Hidden Vacancies Rule = IF(sum(pro_vacancy[va_hidden]) >= 1 || ISBLANK(sum(pro_vacancy[va_hidden])), 0, 100)
Thank you @FreemanZ I initially tried the first one but that didn't work for some reason. It still took 100 as the default.
But the second one worked! I need to practice how to use ISBLANK function more, cheers!
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |