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
I am trying to find MAX date for a particular License number but i am not able to acheive this.
Please find these for refrence
_MsrMaxExpirationDate =
MAXX(
SUMMARIZE(
DimStaffLicenses,
DimStaffLicenses[LicenseNumber],
"MaxExpirationDate", MAX(DimStaffLicenses[ExpirationDate])
),
[MaxExpirationDate]
)
But not getting MAX date with this condtion
Solved! Go to Solution.
@Rkrama746
Create this measure and use it:
_MsrMaxExpirationDate =
CALCULATE (
MAX ( DimStaffLicenses[ExpirationDate] ),
ALLEXCEPT ( DimStaffLicenses, DimStaffLicenses[LicenseNumber] )
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Rkrama746
Create this measure and use it:
_MsrMaxExpirationDate =
CALCULATE (
MAX ( DimStaffLicenses[ExpirationDate] ),
ALLEXCEPT ( DimStaffLicenses, DimStaffLicenses[LicenseNumber] )
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Thanks A lot
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 |
---|---|
33 | |
16 | |
13 | |
10 | |
8 |
User | Count |
---|---|
59 | |
20 | |
12 | |
11 | |
10 |