I suspect this error should be staring me in the face but just not seeing it! I am trying to patch items from shopping cart to SharePoint list.
The type of this argument 'Date' does not match the expected type 'Date'. Type found 'Boolean'. Need to collect items sold along with who sold them and when, this is what I have. Both price and qty are self inputs in case prices or qty needs to change.
Patch('Shopping Cart Orders', Defaults('Shopping Cart Orders'), {User: User().FullName, Date: IsToday( Today()), Title: Item_title.Text, Price:TextInput1_1.Text, Qty: TextInput1.Text})
Really would appreciate some guidance as to where I am going wrong.
Thanks
Solved! Go to Solution.
Hi @SilvermarD
'IsToday( Today())' - is a Boolean argument to check if today is today, which will return true.
Just put 'Today()'.
Hope this helps
In the Date field. IsToday(Today())) will always evaluate to true. I suspect what you want is just Today().
Hi @SilvermarD
'IsToday( Today())' - is a Boolean argument to check if today is today, which will return true.
Just put 'Today()'.
Hope this helps
In the Date field. IsToday(Today())) will always evaluate to true. I suspect what you want is just Today().
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
199 | |
71 | |
51 | |
42 | |
30 |
User | Count |
---|---|
268 | |
119 | |
94 | |
90 | |
81 |