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! Learn more
Greetings all,
I am trying to create a dashboard on Meeting Management, each meeting happens monthly that has several tasks need to happen prior to the meeting day (e.g. Agenda submission, presentation slide submission, minutes submission, etc). Following is the simplified table.
| Meeting Reference | Meeting Date | Agenda Due | Materials Due | Material Clearance | Minutes Due | Final Minutes Clearance |
| Meeting #01 | 20 Jan 2021 | 2 Jan 2021 | 16 Jan 2021 | 18 Jan 2021 | 22 Jan 2021 | 26 Jan 2021 |
| Meeting #02 | 22 Feb 2021 | 3 Feb 2021 | 18 Feb 2021 | 20 Feb 2021 | 24 Feb 2021 | 1 Mar 2021 |
The table is for whole of years (minimum 12 meetings)
I was able to get Meeting Reference + Meeting Date for the next meeting (based on Today's date). Also able to generate table for that particular meeting reference with all the related colums e.g. Meeting #01 with all the 6 related columns.
>Next I would like to display the next Tasks due i.e. Agenda Due / Materials Due / Material Clearance / Minutes Due / Final Minutes Clearance based on Current Date i.e. if Today = 1 Jan 2021, then need to display "Agenda Due - 2 Jan 2021"; or if Today=17 Jan 2021, then need to display "Material Clearance - 18 Jan 2021". < This is where I am stuck.
Highly appreciate your valuabe input, please advise if there are other way of looking at this also.
Solved! Go to Solution.
Hi @Anonymous ,
Try the following formula:
Measure =
var Next_Date =
MINX(
FILTER(
ALL(MeetingDates_UP),
MeetingDates_UP[Value] >= TODAY()
),
MeetingDates_UP[Value]
)
return
CALCULATE(
VALUES(MeetingDates_UP[Attribute]),
FILTER(
MeetingDates_UP,
MeetingDates_UP[Value] = Next_Date
)
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous best would be to unpivot your table and then it is easy to find what is due next. To unpivot, go to PQ, select meeting column, right-click, unpivot other columns, it will give you two columns, attribute, and date, now you can easily work your logic to find the due/upcoming meeting tasks.
Check my latest blog post Comparing Selected Client With Other Top N Clients | PeryTUS I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.⚡
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
Hi parry2k, thank you for the input. I have unpivot, however I am still not sure how to obtain the next "Due Date". I tried the following DAX measure:
Hi @Anonymous ,
Try the following formula:
Measure =
var Next_Date =
MINX(
FILTER(
ALL(MeetingDates_UP),
MeetingDates_UP[Value] >= TODAY()
),
MeetingDates_UP[Value]
)
return
CALCULATE(
VALUES(MeetingDates_UP[Attribute]),
FILTER(
MeetingDates_UP,
MeetingDates_UP[Value] = Next_Date
)
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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.