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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Kpham
Resolver I
Resolver I

Filter on a measure

 

PreviousWeekVulnerabilites = CALCULATE(SUM('FACT'[Count]),DIM_DATE[Index]=177-1)

Measure 2dim = MAX(DIM_DATE[Current Index])-1

PreviousWeekVulnerabilites = CALCULATE(SUM('FACT'[Count]),DIM_DATE[Index]=[Measure 2dim])

 

Can somebody help with the above dax code? The first line does exactly what I need. How ever the value 177 is the index of the current week and I want to make this dynamic. Measure 2dim should give the same result as 177-1, however i'm getting the message:
How should I make the statement so that I get rid of the error. I'm trying to get the count of last week vulnerabilities. 

Kpham_0-1621622417541.png

 

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@Kpham 

Can you try the following modified measure:

PreviousWeekVulnerabilites = 
var __date = MAX(DIM_DATE[Current Index])-1 return
CALCULATE(
    SUM('FACT'[Count]),
    DIM_DATE[Index]=__date
)
Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

2 REPLIES 2
Ashish_Mathur
Super User
Super User

Hi,

Does this measure work?

PreviousWeekVulnerabilites = CALCULATE(SUM('FACT'[Count]),filter(values(DIM_DATE[Index])=[Measure 2dim]))

Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Fowmy
Super User
Super User

@Kpham 

Can you try the following modified measure:

PreviousWeekVulnerabilites = 
var __date = MAX(DIM_DATE[Current Index])-1 return
CALCULATE(
    SUM('FACT'[Count]),
    DIM_DATE[Index]=__date
)
Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

Check out the June 2024 Power BI update to learn about new features.

PBI_Carousel_NL_June

Fabric Community Update - June 2024

Get the latest Fabric updates from Build 2024, key Skills Challenge voucher deadlines, top blogs, forum posts, and product ideas.

Top Solution Authors