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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

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)
)
Anonymous
Not applicable

This is not working

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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.