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.
Hello community,
Please i really need your assistance
I am trying to count a column based on some conditions
two columns = Status and Uploaded
I want to count all the data in approved from 'Status' combined with 'No' and blanks from column 'uploaded'
I am trying to use the formula below but the last part of the formual underlined is preventing me from doing it.
Please can you advise
Solved! Go to Solution.
Hi @Maz_0102
I might have misunderstood your description. Please try
=
COUNTROWS (
FILTER (
'Hazard and Near Miss Report',
AND (
'Hazard and Near Miss Report'[Status] = "Approved",
'Hazard and Near Miss Report'[Uploaded in 4sight] = "No"
|| 'Hazard and Near Miss Report'[Uploaded in 4sight] = BLANK ()
)
)
)
Hi @Maz_0102
please use
=
COUNTROWS (
FILTER (
'Hazard and Near Miss Report',
'Hazard and Near Miss Report'[Status] = "Approved"
|| 'Hazard and Near Miss Report'[Uploaded in 4sight] = "No"
|| 'Hazard and Near Miss Report'[Uploaded in 4sight] = BLANK ()
)
)
Hi
thank you replying
I have executed this below but the number is not returning correct
It should be 38
Hi @Maz_0102
I might have misunderstood your description. Please try
=
COUNTROWS (
FILTER (
'Hazard and Near Miss Report',
AND (
'Hazard and Near Miss Report'[Status] = "Approved",
'Hazard and Near Miss Report'[Uploaded in 4sight] = "No"
|| 'Hazard and Near Miss Report'[Uploaded in 4sight] = BLANK ()
)
)
)
YOU ARE AMAZING! THANK YOU
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
12 | |
11 | |
7 | |
6 |