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.
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!