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.
So I am looking to create a column using a DAX Expression that identifies whether an assignment was past due or not. The column is called "Due in Canvas". And I am looking to use a column that will display whether or not it is later than today's date.
So on the raw file, it is using a COUNTIF function to determine how many assignments were submitted later on a due date:
=COUNTIF(Assignments!):),"<"&TODAY())
I know you cannot do a COUNTIF in PowerBI. I was curious to see if there is any other options I may have to achieve this count?
Solved! Go to Solution.
I think I got it! But I could be wrong. So what I did was create a another column called past due. And did an IF statement to determine if the date is < TODAY && if the Deliverable was " Not Received"
@PrivateAnalytic ye sure, quite easy, just not sure exactly what you need. Can you share a sample file or a copy paste table from excel with the desired result?
The ask is to create 2 visuals very similar to this. The report have has the total. I got the Total Assignments fine (easiest one to do). And then I was able to use a SWITCH (TRUE() to determione the multiple statuses of an assignment as Received or Not Received.
I think I got it! But I could be wrong. So what I did was create a another column called past due. And did an IF statement to determine if the date is < TODAY && if the Deliverable was " Not Received"
@PrivateAnalytic still don't have enough info but will take a guess:
MEASURE = CALCULATE( COUNTROWS ( 'Table' ), 'Table' [Due in Canvas] < TODAY() )
User | Count |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
12 | |
10 | |
6 |