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
Hello dear Power BI-Community
Following problem:
Let's assume this table:
The goal is to calculate the % value of Orders (Anz. Aufträge) per product
Doing this by following two Measures:
Work fine but:
Static Value remains static even if date filter is applied (see picture 2)
Static Value should be 50 then
Thank you very much for your contribution.
Cheers
qwertzuiop
Solved! Go to Solution.
Hi @qwertzuiop ,
If I understand correctly, you want your static measure to change only on Date filter.
Based on this you can modify your DAX for static measure as follows:
Static =
CALCULATE (
SUM ( 'Tabelle'[Anz. Aufträge] ),
ALLEXCEPT ( 'Tabelle', 'Tabelle'[Datum] )
)
Thanks,
Pragati
Hi @qwertzuiop ,
If I understand correctly, you want your static measure to change only on Date filter.
Based on this you can modify your DAX for static measure as follows:
Static =
CALCULATE (
SUM ( 'Tabelle'[Anz. Aufträge] ),
ALLEXCEPT ( 'Tabelle', 'Tabelle'[Datum] )
)
Thanks,
Pragati
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 | |
112 | |
105 | |
95 | |
58 |
User | Count |
---|---|
174 | |
147 | |
136 | |
102 | |
82 |