Forum Discussion
Raph
6 years agoHelper III
SelectRows under condition
Hello,
I would like to use this function :
SelectRows(#"Type modifié4", each [Artikelnummer] <> "4" or [Artikelnummer] <> "7" or [Artikelnummer] <> "12")
only when the date in column Date is after 30th september 2019 (30/09/2019)
Could you tell me how to proceed ?
Thank you very much.
Best regards
Raphaël
Hi Raph
Try thisTable.SelectRows(#"Added Custom", each not ( ( [Date] > #date(2019, 9, 30) ) and ( [Artikelnummer] = 4 or [Artikelnummer] = 7 or [Artikelnummer] = 12 ) ) )
Best Regards,
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.
2 Replies
- MariuszCommunity Champion
Hi Raph
Try thisTable.SelectRows(#"Added Custom", each not ( ( [Date] > #date(2019, 9, 30) ) and ( [Artikelnummer] = 4 or [Artikelnummer] = 7 or [Artikelnummer] = 12 ) ) )
Best Regards,
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.- RaphHelper III