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,
Power BI novice here.
I am wondering if someone could please assist. I have the following measure applied to a card visual to return a count of documents with dates (indicating overdue) before today's date, however as there are some that have no date applied, when filtering it return a a 'Blank' result. In lieu of this I would like it to display '0', but nothing I am trying is working. Can an additional condition be added to achieve this?
E&T Total Overdue = COUNTROWS(FILTER('E&T Document',NOT(ISBLANK('E&T Document'[Cancellation Date]))&&'E&T Document'[Cancellation Date]<TODAY()))
Thanks in advance
Solved! Go to Solution.
hello you have 2 solutions
1- Craete a new Measure
No Blanks =
IF(ISBLANK([E&T Total Overdue]),0,[E&T Total Overdue])
2- Use the new card visual
and change the show blank as to 0
hello you have 2 solutions
1- Craete a new Measure
No Blanks =
IF(ISBLANK([E&T Total Overdue]),0,[E&T Total Overdue])
2- Use the new card visual
and change the show blank as to 0
Thankyou, much appreciated!
User | Count |
---|---|
26 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
32 | |
14 | |
11 | |
10 | |
9 |