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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply
nileshgupta
New Member

Want selected date in written $TY Column, When I run this this is not showing the particular filter

Written TY =
VAR DtSelected=SELECTEDVALUE(Dates[TRNDATE])
Var StrtDate=STARTOFYEAR(Dates[TRNDATE])
Var EndDate =  SELECTEDVALUE(Dates[TRNDATE])
Var Result=
Calculate(
    Sum('WO 3Years'[Written $ TY]), All('WO 3Years'[DATE]), DATESBETWEEN('WO 3Years'[DATE],StrtDate, EndDate))
Return
 Result
2 REPLIES 2
lbendlin
Super User
Super User

Unless you are using fiscal years you can simplify your code.

Written TY =
VAR DtSelected=SELECTEDVALUE(Dates[TRNDATE])
return 
Calculate(
    Sum('WO 3Years'[Written $ TY]), 
    'WO 3Years'[DATE]<=DtSelected, 
    YEAR('WO 3Years'[DATE])=YEAR(DtSelected)
)

This is not working

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

Feb2025 NL Carousel

Fabric Community Update - February 2025

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