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.
Hi,
I have a fixed daily target for different products, I have a column with the actual values for each day.
Is there a way to have that daily target multiplied by the selected date range (date range is altered with a Filter Slicer)
EX.: If the target is "100" daily, if the filter is selected for 3 days, then the Target be updated to "300".
Solved! Go to Solution.
You could try a measure like this if you have a date table (one row per day). If three days are selected in a filter/slicer, the COUNTROWS expression would return three.
Target Measure = 100 * COUNTROWS ( 'Date' )
Proud to be a Super User!
You could try a measure like this if you have a date table (one row per day). If three days are selected in a filter/slicer, the COUNTROWS expression would return three.
Target Measure = 100 * COUNTROWS ( 'Date' )
Proud to be a Super User!
User | Count |
---|---|
28 | |
11 | |
8 | |
6 | |
5 |
User | Count |
---|---|
35 | |
14 | |
12 | |
9 | |
7 |