Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello Power BI Community,
Last week I got some help to exclude the data that is blank and I'm using the following measure to display the percentages per Cohort ( Currently columns 1 - 14).
Cohorts = IF( [MoM % Change from Previous Index] = 0 , BLANK(), [MoM % Change from Previous Index] )
I now need help to create a DAX measure that enables the user to choose to remove the last 3 periods from the visual per row.
** Note that this is not merely chopping off columns 12, 13, and 14 from the end, but rather removing the last 3 columns of data at a ROW level. My objective is to remove the dips that are currently being displayed in the Line Chart Visual.
Solved! Go to Solution.
@BICrazy
I have modified your measure to exclude the last three values for each row:
New Cohorts=
VAR _DATE =
CALCULATE(MAX(Data[date]), ALLSELECTED(Data[Date],Data[Day])) - 3
return
IF(
MAX(Data[Date]) <= _DATE,
[Cohorts]
)
________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@BICrazy
I have modified your measure to exclude the last three values for each row:
New Cohorts=
VAR _DATE =
CALCULATE(MAX(Data[date]), ALLSELECTED(Data[Date],Data[Day])) - 3
return
IF(
MAX(Data[Date]) <= _DATE,
[Cohorts]
)
________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Fowmy
Thank you again Sir!. This measure is exactly what I needed for my dashboard.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
18 | |
15 | |
11 | |
11 | |
8 |
User | Count |
---|---|
24 | |
18 | |
12 | |
11 | |
10 |