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
Anonymous
Not applicable

Best pratices for data model

Hi everybody

 

I am modeling a set of csv files and have a question.

the table Lookup_Kunde contains details about customers that have subsribed to a course. The column highlighted in red, Alter Anfang erster CAS, explains the age of the customer when starting the course.

the table Lookup_Veranstaltung contains details about the courses offered. the column highlighted in red, GPS Name, states the title of the course.

Both lookup tables are consolidated in the table Data_Anmeldungen.

I want to make a graph with the following: average age per course. I am aware that I cannot do this with the current filtering directions. However, what would be the best practice in this case, if I want to maintain the star shape, and avoid cross-directional filtering? Which new Queries/tables should i make etc.?

 

 

first step.png

 

1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

HI @Anonymous,

 

You can try to use following calculate column formula, I manually filter out related list of keys from different tables and do average on lookup_date year field.

AVG Age Per Course =
VAR _kundeList =
    CALCULATETABLE (
        VALUES ( Lookup_Kunde[Kunde_key] ),
        FILTER (
            ALL ( Lookup_Kunde ),
            [Alter Anfang erster CAS] = EARLIER ( Lookup_Kunde[Alerts Anfang erster CAS] )
        )
    )
VAR _anfansdatumList =
    CALCULATETABLE (
        VALUES ( Data_aumeldungen[GPS Anfansdatum] ),
        FILTER ( ALL ( Data_aumeldungen ), [Kunde_key] IN _kundeList )
    )
RETURN
    AVERAGEX (
        FILTER ( ALL ( Looup_Date ), [GPS Anfansdatum] IN _anfansdatumList ),
        [Year]
    )

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

1 REPLY 1
v-shex-msft
Community Support
Community Support

HI @Anonymous,

 

You can try to use following calculate column formula, I manually filter out related list of keys from different tables and do average on lookup_date year field.

AVG Age Per Course =
VAR _kundeList =
    CALCULATETABLE (
        VALUES ( Lookup_Kunde[Kunde_key] ),
        FILTER (
            ALL ( Lookup_Kunde ),
            [Alter Anfang erster CAS] = EARLIER ( Lookup_Kunde[Alerts Anfang erster CAS] )
        )
    )
VAR _anfansdatumList =
    CALCULATETABLE (
        VALUES ( Data_aumeldungen[GPS Anfansdatum] ),
        FILTER ( ALL ( Data_aumeldungen ), [Kunde_key] IN _kundeList )
    )
RETURN
    AVERAGEX (
        FILTER ( ALL ( Looup_Date ), [GPS Anfansdatum] IN _anfansdatumList ),
        [Year]
    )

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

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