Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
24 | |
9 | |
7 | |
6 | |
6 |
User | Count |
---|---|
29 | |
11 | |
11 | |
10 | |
6 |