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.
Can we update the report to display $0.00 for the ‘ Unposted’ if the selected month is not the current month?
here is a sample report for reference
https://www.dropbox.com/s/iz44mcqx1hhlc2n/posted%20data.pbix?dl=0
Solved! Go to Solution.
Hi @NISHA_S ,
Create a measure like below:-
Measure =
VAR selected_category =
TRIM ( MAX ( Sheet1[category_custom] ) )
RETURN
IF (
selected_category = "Unposted"
&& SELECTEDVALUE ( Sheet1[MonthYear] ) <> "Current Month",
0.00,
SUM ( Sheet1[amount1] )
)
Attached the file for reference.
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @NISHA_S ,
Create a measure like below:-
Measure =
VAR selected_category =
TRIM ( MAX ( Sheet1[category_custom] ) )
RETURN
IF (
selected_category = "Unposted"
&& SELECTEDVALUE ( Sheet1[MonthYear] ) <> "Current Month",
0.00,
SUM ( Sheet1[amount1] )
)
Attached the file for reference.
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
User | Count |
---|---|
122 | |
77 | |
62 | |
50 | |
44 |
User | Count |
---|---|
177 | |
125 | |
61 | |
60 | |
58 |