Forum Discussion

bezawak's avatar
bezawak
Frequent Visitor
6 years ago

Power BI Matrix Viz Dispay help

Hello Every One .

 

Good Morning I have an issue on how the below format can be acheived in Power BI Matrix viz or another type of viz that could help me resolve the issue ,Below is the layout and any help is much appreciated 

Indicator is the difference of between the Schedulde & Actual Dates

 

Country on rows

Approval Type 1 & 2 in the columns

schedule date & actual date on the values section

 

Indicator calcualted column -which is diff of dates which will be in values section

 

 

 
Country NameOverall StatusApproval Type 1Approval Type 2 
 Completed|StatusScheduleDate|Actual Date|IndicatorScheduleDate|Actual Date|Indicator 
Name 21 or  0 if schedule date is null| status is max value of difference of the indicator columndate1|date2|diff of datesdate1|date2|diff of dates 
 

4 Replies

  • v-gizhi-msft's avatar
    v-gizhi-msft
    Icon for Community Support rankCommunity Support

    Hi,

     

    I am confused about your requirement, and I try to create a sample pbix file:

    pbix 

    Hope this helps.

     

    Best Regards,

    Giotto ZHi

    • bezawak's avatar
      bezawak
      Frequent Visitor

      Hello Thanks for you file

       

      below is the format

      if  schedule date is not null and if we have a value for difference then the over all status should be the max of the difference values  (Example :max of two like value should be 63,70 ) and overall status should be one column beside country

       
       
      • v-gizhi-msft's avatar
        v-gizhi-msft
        Icon for Community Support rankCommunity Support

        Hi,

         

        Please try to create this calculated column:

        Overall Status = IF('Table'[ScheduleDate]<>BLANK(),CALCULATE(MAX('Table'[Datediff by day]),ALLEXCEPT('Table','Table'[Country Name])))

        And it shows:

        Here is my new test pbix file:(I have made a bit changes to original data)

        pbix 

         

        Best Regards,

        Giotto Zhi