I've a SharePoint List with a column containing dates in the dd/mm/yyyy formwat. I need to create a DropDown populated with the Month only from the dates in that column. I was able to get the DropDown to work by returning the ## of the month, but as soon as I try to format it as the text of that month e.g. March, November, etc. the DropDown stops returning the same results. Why is this happening and how do I correct it?
Solved! Go to Solution.
I don't think the Month function is necessary here. Drop it and simply use Text instead.
Distinct(PwrAppSalesData, Text(DatePick, "mmmm"))
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
I don't think the Month function is necessary here. Drop it and simply use Text instead.
Distinct(PwrAppSalesData, Text(DatePick, "mmmm"))
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
Bingo! Thank you.
User | Count |
---|---|
164 | |
91 | |
67 | |
64 | |
63 |
User | Count |
---|---|
212 | |
157 | |
96 | |
81 | |
73 |