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
What I'm looking is, to calculate the sum of "Salary", which has no dates in "Date de Desligamento".
Many thanks!
Solved! Go to Solution.
Hi @feehdRXE
Thanks for reaching out to us.
You can try this measure,
Measure = SUMX(FILTER('Table',ISBLANK('Table'[Date de Desligamento])),[Salary])
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi @feehdRXE
Thanks for reaching out to us.
You can try this measure,
Measure = SUMX(FILTER('Table',ISBLANK('Table'[Date de Desligamento])),[Salary])
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
[Total Salary] =
SUMX(
filter(
T,
NOT ISBLANK( T[Date de Desligamento] )
),
T[Salary]
)
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 |
---|---|
32 | |
15 | |
14 | |
13 | |
9 |