Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Two issues for which I'm seeking best practices. Here's my data scenario:
I'd like to:
Thanks very much for any thoughts you may have on the matter.
Solved! Go to Solution.
HI @MarkPalmberg ,
#1, You can try to use following calculated column to achieve your requirement.
Sum of Current FY = CALCULATE ( SUM ( Table[InstallmenntAmount] ), FILTER ( ALL ( Table ), [PledgeID] = EARLIER ( Table[PledgeID] ) && [InstallmentFY] = EARLIER ( Table[InstallmentFY] ) ) )
#2, I'd like to suggest you write a measure to compare current FY and today's FY and return tag. Then drag this measure to visual level filter and keep Y tag records.
Sample:
Tag Measure = VAR todayFY = 'formula to convert today to FY' VAR currFY = MAX ( Table[InstallmentFY] ) RETURN IF ( currFY <= todayFY - 3, "Y", "N" )
Regards,
Xiaoxin Sheng
HI @MarkPalmberg ,
#1, You can try to use following calculated column to achieve your requirement.
Sum of Current FY = CALCULATE ( SUM ( Table[InstallmenntAmount] ), FILTER ( ALL ( Table ), [PledgeID] = EARLIER ( Table[PledgeID] ) && [InstallmentFY] = EARLIER ( Table[InstallmentFY] ) ) )
#2, I'd like to suggest you write a measure to compare current FY and today's FY and return tag. Then drag this measure to visual level filter and keep Y tag records.
Sample:
Tag Measure = VAR todayFY = 'formula to convert today to FY' VAR currFY = MAX ( Table[InstallmentFY] ) RETURN IF ( currFY <= todayFY - 3, "Y", "N" )
Regards,
Xiaoxin Sheng
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
92 | |
83 | |
71 | |
49 |
User | Count |
---|---|
143 | |
120 | |
110 | |
59 | |
57 |