Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
m2020
Employee
Employee

Line chart and pie chart for last value on Power BI service report for streaming dataset

timestampvalue
6/22/2022 9:00  20
6/22/2022 11:00  40
6/22/2022 13:00  55.5
6/22/2022 15:00  75
6/22/2022 17:00  23
6/22/2022 19:00  35.4

 

Value can only be between 0 and 100.

I created a line chart for the past 30 days but the ask is to ask to add a pie chart as well for the last value received, so if it is 100 the pie chart will be full, 50 half, and so on.

Is this possible for a Power BI service report?

1 ACCEPTED SOLUTION

Hi @m2020,

 

For you have to make some calculations on the fields, you need do it in Power BI Desktop. In Power BI service, you couldn’t make changes to the model and you could only take the model to do some reports or share etc.

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please let me know. Thanks a lot!

 

Best Regards,

Community Support Team _ Caiyun

View solution in original post

3 REPLIES 3
m2020
Employee
Employee

Thank you v-cazheng-msft for the response.

So the only way is to use PB Desktop?
I was trying to avoid it (keep it as simple as possible) as for the line chart I did not use it, and I had thought it was doable for the pie chart as well and I looked and I could not find a way to do it only in the PB service report and of course my first thought was I did not know where to look :).

Hi @m2020,

 

For you have to make some calculations on the fields, you need do it in Power BI Desktop. In Power BI service, you couldn’t make changes to the model and you could only take the model to do some reports or share etc.

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please let me know. Thanks a lot!

 

Best Regards,

Community Support Team _ Caiyun

v-cazheng-msft
Community Support
Community Support

Hi @m2020,

 

You can try this solution but it may has some defects on legends, data labels.

1 Create a Calculated column to classify the timestamps in your table

 

Classify =
IF (
    'Table'[timestamp] = MAX ( 'Table'[timestamp] ),
    "" & MAX ( 'Table'[timestamp] ),
    ""
)

 

 

2 Create a Calculated table

 

NewTable = DISTINCT('Table'[Classify])

 

 

3 Create a Measure

 

LastValue =
VAR maxTime =
    CALCULATE ( MAX ( 'Table'[timestamp] ), ALL ( 'Table' ) )
VAR LatestValue =
    CALCULATE (
        MAX ( 'Table'[value] ),
        FILTER ( 'Table', 'Table'[timestamp] = maxTime )
    )
RETURN
    IF (
        SELECTEDVALUE ( 'NewTable'[Classify] )
            = ( MAX ( 'Table'[timestamp] ) & "" ),
        LatestValue,
        100 - LatestValue
    )

 

 

4 Create a Pie chart and set its Format as follows

vcazhengmsft_0-1656314656934.png

 

Also, attached the pbix file as reference.

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let me know. Thanks a lot!

 

Best Regards,

Community Support Team _ Caiyun

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Kudoed Authors