cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
user900
Helper II
Helper II

daxstudio to power BI conversion

This was created for me using daxstudio.  How should I revise it for Power BI to evaluate all ID's, not just on the one filtered?

 

/--Filter Report Date to start after 5/1/2023 & only Clicked
//EVALUATE
//FILTER(
//    'Table',
//    'Table'[Report Date] >= 5/1/2023 &&
//    'Table'[Click] = "True"
//    )
//
--Calculate Cumulative Sum of Primary, per User & Report Date
EVALUATE 
VAR currentdate = MAX('Table'[Report Date])
RETURN
SUMMARIZECOLUMNS(
            'Table'[Report Date],
            'Table'[Formatted Count],
            FILTER('Table','Table'[Employee ID] = "68712"),
            "ClickCount", SUMX( 
                            FILTER(
                                'Table',
                                'Table'[Report Date] <= currentdate
                                ),
                                CALCULATE( COUNTA('Table'[Employee ID))
                                )
                            )

 

Thanks in advance.

~User 900

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@user900 , a new table 

Table=

VAR currentdate = MAX('Table'[Report Date])
RETURN
SUMMARIZECOLUMNS(
            'Table'[Report Date],
            'Table'[Formatted Count],
            FILTER('Table','Table'[Employee ID] = "68712"),
            "ClickCount", SUMX( 
                            FILTER(
                                'Table',
                                'Table'[Report Date] <= currentdate
                                ),
                                CALCULATE( COUNTA('Table'[Employee ID))
                                )
                            )

 

 

or create a measure and use the required columns in the table visual

 

SUMX(
FILTER(
'Table',
'Table'[Report Date] <= currentdate && 'Table'[Employee ID] = "68712"
),
CALCULATE( COUNTA('Table'[Employee ID))
)

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@user900 , a new table 

Table=

VAR currentdate = MAX('Table'[Report Date])
RETURN
SUMMARIZECOLUMNS(
            'Table'[Report Date],
            'Table'[Formatted Count],
            FILTER('Table','Table'[Employee ID] = "68712"),
            "ClickCount", SUMX( 
                            FILTER(
                                'Table',
                                'Table'[Report Date] <= currentdate
                                ),
                                CALCULATE( COUNTA('Table'[Employee ID))
                                )
                            )

 

 

or create a measure and use the required columns in the table visual

 

SUMX(
FILTER(
'Table',
'Table'[Report Date] <= currentdate && 'Table'[Employee ID] = "68712"
),
CALCULATE( COUNTA('Table'[Employee ID))
)

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors