Forum Discussion
SharePoint Workflow Reporting
--ak-- Which column is the one you described first? id?
no so that is showing all the tables in the sharepoint site...when i go into the booking table the column i shows a mixture of null values and numbers(15,16,17,18 etc)- these represent the workflow status but im not sure how to change the numbers into "manager approved, manager declined" etc
- v-janeyg-msft4 years agoCommunity Support
Hi, --ak--
For the information you have provided now, all I can say is that if you can't modify the wrong data before you get it, then it can't be recovered.
If the mixture of null values and numbers(15,16,17,18 etc) corresponds to the original data form, then you can modify it by customizing the column.
Like this:
PQ:
if [column]= 15,"manager approved",else if [column]=16,"manager declined", else if ...else ...DAX:
if ([column]= 15,"manager approved", if ([column]=16,"manager declined", if(...)))
Best Regards,
Community Support Team _ Janey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.- --ak--4 years agoRegular Visitor
thank you- i'll give this a go!