Forum Discussion
nshaw75
2 years agoNew 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 sit...
davidding
2 years agoResolver 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(
COUNTROWS(
DISTINCT(
UNION(
VALUES(table_name[Raiser]),
VALUES(table_name[Authoriser])
)
)
)