Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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.