Forum Discussion
Stuznet
7 years agoHelper V
If Statement Then Output Custom Text
Hi guys, I'm having little trouble writing an IF statement. Here is the logic DateReceived minus Inv Date being greater or less than 50. This is the the function I wrote but is invalid. ...
- Anonymous7 years ago
Hi Stuznet
Use this.
Column = IF ( Table1[DateReceived] - Table1[InvDate] < 51 , "<50 Days","50+ Days ")
Thanks
Raj