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.
I have a date column [AsofDate] in a table table1. I needto calculate value of amount on every friday of every month fom [AsofDate] Column.
How do I acheive that?
Solved! Go to Solution.
Hi, Create a measure
Amount-Fridays = CALCULATE ( SUM ( Table1[Amount] ), FILTER ( Table1, WEEKDAY ( Table1[Date] ) = 6 ) )
Regards
Victor
Lima - Peru
Hi, Create a measure
Amount-Fridays = CALCULATE ( SUM ( Table1[Amount] ), FILTER ( Table1, WEEKDAY ( Table1[Date] ) = 6 ) )
Regards
Victor
Lima - Peru
Use the WEEKDAY function as either a FILTER (6 is Friday by default for US power BI, but double check your version), or add a Custom Column of WEEKDAY in your Date Master Table (or you local Dates if you don't have a Date Master) and Filter / Slice out in PowerBI.
FOrrest
Proud to give back to the community!
Thank You!