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
kjartank
Helper II
Helper II

Making a calculated table

Hi

 

I am trying to make a table that looks like this in Power BI.

Satisfactiontable.png

 

  • The first column is the values from "Booking - Where"  from the dataset.
  • The Score column is the average score for each of these values, from the most recent quarter.
  • The "+/-" is the averages from the two past quarts, that is subtracted from the average from the quarter that is being analyzed.
  • The last column is the percentage of customers that are satisfied, but only from this quarter.

One of the problems I face is that I can't works with calendardata, as we have the quarters and a fifth period in the summer. I just can't seem to figure out how I should be taking this on.

 

Here is a link for the datafile, if it is to any help. Table data

 

 

I would be very grateful for any help!

 

Thanks in advance!

1 ACCEPTED SOLUTION
v-ljerr-msft
Employee
Employee

Hi @kjartank,

 

If I understand you correctly, you should be able to use the formulas below to get your expected result.

 

1. Add a new calculate column "QuarterNO" to your table.

QuarterNO = 
VALUE ( LEFT ( Tabel2[Quarter], 4 ) ) * 4
    + VALUE ( MID ( Tabel2[Quarter], 6, 1 ) )

2. Create different measures to calculate "Score", "+\-", and "Satisfied%", then show them on the Table visual with the "Booking-Where" column.

Score = 
VAR latestQuarter =
    CALCULATE ( MAX ( Tabel2[QuarterNO] ), ALL ( Tabel2 ) )
RETURN
    CALCULATE (
        AVERAGE ( Tabel2[Booking - Satisfaction] ),
        Tabel2[QuarterNO] = latestQuarter
    )
+/- = 
VAR latestQuarter =
    CALCULATE ( MAX ( Tabel2[QuarterNO] ), ALL ( Tabel2 ) )
RETURN
    CALCULATE (
        AVERAGE ( Tabel2[Booking - Satisfaction] ),
        Tabel2[QuarterNO]
            >= latestQuarter - 2
            && Tabel2[QuarterNO]
            <= latestQuarter - 1
    )
        - [Score]
Satisfied% = 
VAR latestQuarter =
    CALCULATE ( MAX ( Tabel2[QuarterNO] ), ALL ( Tabel2 ) )
RETURN
    DIVIDE (
        CALCULATE (
            COUNTROWS ( Tabel2 ),
            FILTER (
                Tabel2,
                Tabel2[QuarterNO] = latestQuarter
                    && Tabel2[Booking Satisfied] = "Satisfied"
            )
        ),
        CALCULATE (
            COUNTROWS ( Tabel2 ),
            FILTER ( Tabel2, Tabel2[QuarterNO] = latestQuarter )
        )
    )

r1.PNG

 

Here is the modified pbix file for your reference. Smiley Happy

 

Regards

View solution in original post

4 REPLIES 4
v-ljerr-msft
Employee
Employee

Hi @kjartank,

 

If I understand you correctly, you should be able to use the formulas below to get your expected result.

 

1. Add a new calculate column "QuarterNO" to your table.

QuarterNO = 
VALUE ( LEFT ( Tabel2[Quarter], 4 ) ) * 4
    + VALUE ( MID ( Tabel2[Quarter], 6, 1 ) )

2. Create different measures to calculate "Score", "+\-", and "Satisfied%", then show them on the Table visual with the "Booking-Where" column.

Score = 
VAR latestQuarter =
    CALCULATE ( MAX ( Tabel2[QuarterNO] ), ALL ( Tabel2 ) )
RETURN
    CALCULATE (
        AVERAGE ( Tabel2[Booking - Satisfaction] ),
        Tabel2[QuarterNO] = latestQuarter
    )
+/- = 
VAR latestQuarter =
    CALCULATE ( MAX ( Tabel2[QuarterNO] ), ALL ( Tabel2 ) )
RETURN
    CALCULATE (
        AVERAGE ( Tabel2[Booking - Satisfaction] ),
        Tabel2[QuarterNO]
            >= latestQuarter - 2
            && Tabel2[QuarterNO]
            <= latestQuarter - 1
    )
        - [Score]
Satisfied% = 
VAR latestQuarter =
    CALCULATE ( MAX ( Tabel2[QuarterNO] ), ALL ( Tabel2 ) )
RETURN
    DIVIDE (
        CALCULATE (
            COUNTROWS ( Tabel2 ),
            FILTER (
                Tabel2,
                Tabel2[QuarterNO] = latestQuarter
                    && Tabel2[Booking Satisfied] = "Satisfied"
            )
        ),
        CALCULATE (
            COUNTROWS ( Tabel2 ),
            FILTER ( Tabel2, Tabel2[QuarterNO] = latestQuarter )
        )
    )

r1.PNG

 

Here is the modified pbix file for your reference. Smiley Happy

 

Regards

I need the list of formulas for Power BI. 

Like they do in excel.

 

Where Can I get it?

Hi @v-ljerr-msft

 

You are a genius! Thanks a lot!

 

A last question. How would I tell PBI to exclude the blanks?

kjartank
Helper II
Helper II

If it is impossible ti make such a table, what would be a good way to show this data?

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 Solution Authors