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.
Hello;
How is possible to create a graph by person with a SharePoint list ?
I have this Sharepoint list and I would like a day number (approved) / per month
How is it possible to have a different graph per person ?
The result I would like to have (one person) : number of day / month => per Person
Thank for your help 🙂 !
Solved! Go to Solution.
Hey,
to achieve what you want I would do this:
Year = YEAR('<tablename>'[Date_From_...])
Month = Month('<tablename>'[Date_From_...])
Month Name = FORMAT('<tablename>'[Date_From_...] , "MMM")
Now you can create a column chart, using the newly created column "Month Name" on the x-axis, drag the "Date_From_..." column to the value band and switch the aggregation function to count.
Use the column "Requester" as a slicer to make sure that only the values from one person are used.
If you want to create a chart that contains all the data for all persons at the same time, but in an extra chart, you have to use a custom visual that supports "small multiples" like the Infographic Designer (available from the marketplace without any costs). Here is a screenshot of a small multiple created by using the Infograhic Designer custom visual:
Hopefully this provides you with some ideas.
Regards,
Tom
Hey,
to achieve what you want I would do this:
Year = YEAR('<tablename>'[Date_From_...])
Month = Month('<tablename>'[Date_From_...])
Month Name = FORMAT('<tablename>'[Date_From_...] , "MMM")
Now you can create a column chart, using the newly created column "Month Name" on the x-axis, drag the "Date_From_..." column to the value band and switch the aggregation function to count.
Use the column "Requester" as a slicer to make sure that only the values from one person are used.
If you want to create a chart that contains all the data for all persons at the same time, but in an extra chart, you have to use a custom visual that supports "small multiples" like the Infographic Designer (available from the marketplace without any costs). Here is a screenshot of a small multiple created by using the Infograhic Designer custom visual:
Hopefully this provides you with some ideas.
Regards,
Tom