Forum Discussion
Create Dummy Data within a Table
- 1 year ago
Hi quincy_p Yes, it is possible to create dummy work orders and populate Try these please
Check for Blank Work Orders: Use a calculated column to assign dummy work orders for blank values.Work Order [Name] = IF(ISBLANK(WorkOrders[Work Order Name]), "WO-Dummy-" & WorkOrders[Component] & "-" & RANKX(ALL(WorkOrders), WorkOrders[Component]), WorkOrders[Work Order Name])Assign Scheduled Dates: Add a calculated column to generate dummy dates if the work order is blank.
Work Order [Scheduled Date] = IF(ISBLANK(WorkOrders[Work Order Name]), DATE(2025, 1, 1) + MOD(ABS(HASH(WorkOrders[Component])), 365), WorkOrders[Scheduled Date])If this post helped please do give a kudos and accept this as a solution
Thanks In Advance
Hi quincy_p,
Just a gentle reminder — has your issue been resolved? If so, we’d be grateful if you could mark the solution that worked as Accepted Solution, or feel free to share your own if you found a different fix.
This not only closes the loop on your query but also helps others in the community solve similar issues faster.
Thank you for your time and feedback!
Best,
Prasanna Kumar