How to EASILY create gauge charts with target lines using standard visuals in Power BI

Поделиться
HTML-код
  • Опубликовано: 12 дек 2024

Комментарии • 5

  • @experience_kingsley
    @experience_kingsley Месяц назад

    Thank you! This was really good. I will be watching more of your tutorials.

  • @rowanschoultz1022
    @rowanschoultz1022 7 месяцев назад +2

    You can get rid of the label-column overlap issue by setting a dynamic Y-axis value to be x% more than the max Y value.
    Y-axis Max = --Computes the Y Axis with a set %
    VAR _PctIncrease = 15
    VAR _IncreaseFactor = 1 + (_PctIncrease / 100)
    VAR _HighestCount =
    MAXX ( --Determine visual MAX value
    ALLSELECTED ( 'Calendar'[Date] ), --Over the X-axis
    [Your column metric] --On this measure
    )
    VAR _Result =
    _HighestCount * _IncreaseFactor --Apply the increase %
    RETURN
    _Result

  • @AnilKumar-vi8oe
    @AnilKumar-vi8oe 7 месяцев назад

    Great work man, keep going

  • @getsetgoo3334
    @getsetgoo3334 7 месяцев назад

    Excellent tutorial Thanks

  • @WaqasKhan-sp3sn
    @WaqasKhan-sp3sn 3 месяца назад

    Best tutorial