March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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.
Solved! Go to Solution.
@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
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Hi,
Does this measure work?
PreviousWeekVulnerabilites = CALCULATE(SUM('FACT'[Count]),filter(values(DIM_DATE[Index])=[Measure 2dim]))
@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
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
143 | |
97 | |
79 | |
68 |