The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hey All,
long story short we are doing some QA and need to be able to pull random tickets from my analyst.
We have a column of Number which is ticket number, Assigned to which is User, and then date is labeled as Closed Date CST.
How would I be able to put this on a dashboard or card for someone to use?
Solved! Go to Solution.
Hi @Creature ,
I create a table as you mentined.
Then I think you can create a new calculated column.
Column = RAND()
Next you can create a measure and a slicer.
Measure =
VAR SelectedColumn =
SELECTEDVALUE ( 'Table'[Column] )
RETURN
CALCULATE ( MAX ( 'Table'[Number] ), 'Table'[Column] = SelectedColumn )
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Creature ,
I create a table as you mentined.
Then I think you can create a new calculated column.
Column = RAND()
Next you can create a measure and a slicer.
Measure =
VAR SelectedColumn =
SELECTEDVALUE ( 'Table'[Column] )
RETURN
CALCULATE ( MAX ( 'Table'[Number] ), 'Table'[Column] = SelectedColumn )
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
-Make the ticket numbers unique
-add a random number column
-grab the first x rows sorted by the random number column.
User | Count |
---|---|
28 | |
11 | |
8 | |
6 | |
5 |
User | Count |
---|---|
35 | |
14 | |
12 | |
9 | |
7 |