Hi @Dave-ITMan , Try this: EDITED:
OnSelect of (last month) button
Set(
gblvar_LastMonthCount,
CountRows(
Filter(
ListName,
Month(Created) = Month(Today()) - 1
)
)
)
OnSelect of (this month) button
Set(
gblvar_ThisMonthCount,
CountRows(
Filter(
ListName,
Month(Created) = Month(Today())
)
)
)
Then you can use these variable on the text input box default property alternatively.
NOTE: There might be issue with delegation.
-----------------------------------------------------------------------------------------------------------------------------
I hope this helps.
Please click Accept as solution ✅ if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs up.👍
Thanks,
ANB