Hi, new here.
I've just inserted a table in my app as below. However, I only want it to view the dates that is within the week the user is opening the app.
For instance, if I am opening the app on Wednesday, I'll be able to see the data from Monday up to Wednesday the same week.
Can someone help me out?
Thank you.
Solved! Go to Solution.
Hi @zikrizainal ,
Something like this should do it
With(
{
wDay:
DateAdd(
Today(),
-Weekday(
Today(),
StartOfWeek.Monday
),
Days
)
},
Filter(
YourListName,
YourDateField > wDay
)
)
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.
Visit my blog Practical Power Apps
Hi @zikrizainal ,
Something like this should do it
With(
{
wDay:
DateAdd(
Today(),
-Weekday(
Today(),
StartOfWeek.Monday
),
Days
)
},
Filter(
YourListName,
YourDateField > wDay
)
)
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.
Visit my blog Practical Power Apps
Hi @zikrizainal ,
Just checking if you got the result you were looking for on this thread. Happy to help further if not.
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.
Visit my blog Practical Power Apps
Wow not intimidating at all for no coders. Kudos PowerApps!
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
User | Count |
---|---|
202 | |
100 | |
61 | |
59 | |
58 |
User | Count |
---|---|
254 | |
163 | |
90 | |
79 | |
70 |