Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hi,
Few measures value in a table should be Last date values . For example in below table , count of Backlog last date value is 56 that should come in grand total insted of sum of backlogs . Is there any soulution to display like this . Please provide a solution
Date | Handled | Backlogs |
29-Nov-17 | 45 | 33 |
30-Nov-17 | 35 | 34 |
1-Dec-17 | 67 | 67 |
2-Dec-17 | 78 | 56 |
Totals | 225 | 56 |
Thanks,
Suresh
Solved! Go to Solution.
Try this
CountMeasure = VAR lastdateCount = CALCULATE ( COUNT ( TableName[Backlogs] ), LASTDATE ( TableName[Date] ) ) RETURN IF ( NOT ( HASONEVALUE ( TableName[Date] ) ), lastdateCount, COUNT ( TableName[Backlogs] ) )
Try this
CountMeasure = VAR lastdateCount = CALCULATE ( COUNT ( TableName[Backlogs] ), LASTDATE ( TableName[Date] ) ) RETURN IF ( NOT ( HASONEVALUE ( TableName[Date] ) ), lastdateCount, COUNT ( TableName[Backlogs] ) )
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
115 | |
113 | |
105 | |
95 | |
58 |
User | Count |
---|---|
174 | |
147 | |
136 | |
102 | |
82 |