Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
ApurvaKhatri
Helper III
Helper III

Get value of every friday from date column

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?

1 ACCEPTED SOLUTION
Vvelarde
Community Champion
Community Champion

@ApurvaKhatri

 

Hi, Create a measure

 

Amount-Fridays =
CALCULATE (
    SUM ( Table1[Amount] ),
    FILTER ( Table1, WEEKDAY ( Table1[Date] ) = 6 )
)

Regards

 

Victor

Lima - Peru




Lima - Peru

View solution in original post

2 REPLIES 2
Vvelarde
Community Champion
Community Champion

@ApurvaKhatri

 

Hi, Create a measure

 

Amount-Fridays =
CALCULATE (
    SUM ( Table1[Amount] ),
    FILTER ( Table1, WEEKDAY ( Table1[Date] ) = 6 )
)

Regards

 

Victor

Lima - Peru




Lima - Peru
fhill
Resident Rockstar
Resident Rockstar

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




Did I answer your question, or help you along the way?
Please give Kudos or Mark as a Solution!


https://www.linkedin.com/in/forrest-hill-04480730/

Proud to give back to the community!
Thank You!




Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors