Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
nshaw75
New Member

Total Involvements

Hi guy's I am a bit stuck on an issue. I have visual set up, originally I did it in the Desktop experience, but when I uploaded it to a shared site it now forces me to us it in the Online Service site. The visual is based on a SharePoint list of Permits and I have a column for Raiser and a column for Authoriser. What I am looking to do is create a chart which has total involvements, ie if a team member is either the raiser or the authouriser. 

I have asked co-pilot and they say I need to create a measure in DAX, an I have no idea how to do this. 

Any helkp would be greatly appreciated

 

3 REPLIES 3
nshaw75
New Member

Hi @davidding 

Thanks for the reply 🙂 I have created the measure as below, I had got the Column titles wrong so I have therefore used the correct ones in the DAX formula. The measure is now in my data pane. 

nshaw75_0-1720966897319.png

nshaw75_1-1720966928970.png

I am struggling to understand the best way to configure the chart as each way I put the data in, it doesn't work. The only field the Measure seems to be able to go is the Y axis then in the x Axis I can put almost everything else but it doesn't show what I want it to see.

 

 

 

@nshaw75 , probably checkout some dashboard design. you can also use it in card visual or bar chart that doesn't require placing that in the y-axis.

davidding
Resolver I
Resolver I

something like this might work. You need to look up a youtube video about how to create a measure using DAX. even if this does not give you the exact answer, you might be able to ask a better question to gpt again 😉

Total Involvments =
COUNTROWS(
    DISTINCT(
        UNION(
            VALUES(table_name[Raiser]),
            VALUES(table_name[Authoriser])
        )
    )
)

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.