Format matrix columns into bands of colours in Power BI

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ม.ค. 2025

ความคิดเห็น • 8

  • @brianjulius6401
    @brianjulius6401 3 ปีที่แล้ว

    Totally agree with you that this should be easier in Power BI, but really clever implementation and great explanation.

  • @mardithpascua8112
    @mardithpascua8112 2 ปีที่แล้ว

    Hi, New to PowerBI, I watched your video however, in my PowerBI Desktop. there's no Conditional formatting in the property.

    • @PowerBIFerryTales
      @PowerBIFerryTales  2 ปีที่แล้ว

      It may be because of the updated format panel. It is called Cell Elements now.

    • @mardithpascua8112
      @mardithpascua8112 2 ปีที่แล้ว

      @@PowerBIFerryTales is it possible to have a different colors per Column? Like for example
      I have:
      Week 1 | Week 2 | Week 3 | Week 4
      then these column header and their rows should have different colors

  • @pavankumar-hw6zb
    @pavankumar-hw6zb 3 ปีที่แล้ว

    Great trick

  • @SergiyVakshul
    @SergiyVakshul 3 ปีที่แล้ว +1

    I see that your will have a problem if apply a filter for MON, WED, FRI, SUN only. To get around it I'd use something similar to the following: ODD_color =
    IF(
    ISODD(
    RANKX(
    ALLSELECTED('Date'[Date]),
    CALCULATE(SELECTEDVALUE(('Date'[Date])))
    )
    ),
    "#EFEFEF"
    )

  • @antique-bs8bb
    @antique-bs8bb 2 ปีที่แล้ว

    I'm guessing there is a reason, but do you really need to make your colouring measure = [a measure] ?
    Why not just 0 or 1 ?
    Or even just use the M-coded 'Date'[Odd or Even] - or at least colour measure = MAX('Date'[Odd or Even]) ?