Hi Everyone,
I am trying to create a column chart that displays the number lab test submissions that request a particular test. This information is being pulled from a column in Sharepoint called TestNeeded that is a choice field that allows multiple options to be selected. Below is the code that I am using in the Items section for the bar chart but doesn't seem to be working. I get an error stating "Expected a text, numeric, boolean, or date/time value". Any ideas on what I might be doing wrong?
AddColumns(GroupBy(AddColumns(QualityLabDashboard,"SelectedTest",TestNeeded.Value),"SelectedTest","TestNeededList"),"TestNeeded",CountRows(TestNeededList))
Thanks!