Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello,
I have created a measure to caluclate the 80th perecentile for a set of data, but now I cant visualize this measure, I only can add it to a table.
This is how it look in the table:
Now That I know to show the trend of this measure using w chart, how can I do so? it should be like the following chart but for the percentile instead of average:
Thanks,
Zaid
Solved! Go to Solution.
Yep, you got it. I was going to mention that your FORMAT was converting it to text!
Can you share some sample data and your measure formula?
I have changed the format of the measure before creating it to Whole number and now it works. thanks @Greg_Deckler
Yep, you got it. I was going to mention that your FORMAT was converting it to text!
Hi @Greg_Deckler,
First I have a column that measures the difference between two dates as below:
T1 (Response Time) = IF ( ISBLANK ( [CollectionInProgressDate_UTC] ), BLANK (), var calendarTable= CALENDAR([CREATEDON],[CollectionInProgressDate_UTC])
var exceptDate=CALCULATETABLE(VALUES('Situational Holidays'[situationDate]),FILTER(ALL('Situational Holidays'),[Entity]=EARLIER('Dates'[SHIPPERENTITY])))
var filtered=ADDCOLUMNS(EXCEPT(calendarTable,exceptDate),"Day Of Week",WEEKDAY([Date],1))
return
COUNTROWS(FILTER(filtered,[Day Of Week]<> 'Dates'[First weekend] && [Day Of Week]<>'Dates'[secound weekend]))-1)Then I have a measure that caluclate the 80th percentile for that column:
T1, 80thPercentile = FORMAT( ROUND(PERCENTILE.INC(Dates[T1 (Response Time)],0.8),0),"0")
The problem is that I cant change the format of that measure to number, it is showing as text.
Thanks,
Zaid
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.