Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hello,
I want to create a New Parameter that allows me to see what's the phasing according to the day of sales.
For example, we have 20 days of sales in a period so in 19 day we are supposed to be in 95% of sales of the target.
WORKING DAYS | DAYS OF SALES | TARGET |
20 | 20 | =Days of sales / Working Days |
By creating this, I'd like to move freely this bar so it indicates me I sould be in 55% of the target as we are in 11 day.
Thanks
@NewParameter @Phasing
Solved! Go to Solution.
Hi,
You can try to create this slicer table first:
SlicerTable = DISTINCT(SELECTCOLUMNS('Table',"Parameter",'Table'[Day of sales]))
Then try this measure:
Measure =
IF (
MAX ( 'Table'[Day of sales] ) = SELECTEDVALUE ( SlicerTable[Parameter] ),
SELECTEDVALUE ( SlicerTable[Parameter] ) / MAX ( 'Table'[Working days] ),
BLANK ()
)
When select one value in slicer, the result shows:
Hope this helps.
Best Regards,
Giotto
Hi,
You can try to create this slicer table first:
SlicerTable = DISTINCT(SELECTCOLUMNS('Table',"Parameter",'Table'[Day of sales]))
Then try this measure:
Measure =
IF (
MAX ( 'Table'[Day of sales] ) = SELECTEDVALUE ( SlicerTable[Parameter] ),
SELECTEDVALUE ( SlicerTable[Parameter] ) / MAX ( 'Table'[Working days] ),
BLANK ()
)
When select one value in slicer, the result shows:
Hope this helps.
Best Regards,
Giotto
OK, so create the What If parameter, let's call it Phasing perhaps and then you could do this:
Measure = SELECTEDVALUE('Phasing'[Value]) / MAX('Table'[Working Days])
?
If that isn't it, Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
142 | |
71 | |
64 | |
52 | |
50 |
User | Count |
---|---|
208 | |
91 | |
62 | |
59 | |
56 |