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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

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
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

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.