Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Friends,
I have a dataset whose sample looks like below
I need to create a summarize table in Power BI which should contain each Customer name by month and check if the update has been sent and what is the last date of the update sent for each month and customer
the table will look like below
Any ideas??
Have a great day
Thanks
Solved! Go to Solution.
@Anonymous , Join update send date with date table and try a measure like
if(isblank(max(Table[update Send Date])), "No", "Yes")
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.
@Anonymous , Join update send date with date table and try a measure like
if(isblank(max(Table[update Send Date])), "No", "Yes")
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.