The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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]
)
User | Count |
---|---|
15 | |
8 | |
6 | |
6 | |
6 |
User | Count |
---|---|
24 | |
14 | |
13 | |
8 | |
8 |