Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
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.
Column = IF (AND(('Table1 '[DateReceived]) - [InvDate] < 51 ), "<50 Days","50+ Days ")
Can someone please help?
Solved! Go to Solution.
Hi @Stuznet
Use this.
Column = IF ( Table1[DateReceived] - Table1[InvDate] < 51 , "<50 Days","50+ Days ")
Thanks
Raj
The formula you have is invalide because you are using AND condition and only condition1 is listed. Here is how I fix it:
Column = IF ( DATEDIFF(
[InvDate], [DateReceived], Day) <50
,"<50 Days"
,"50+ Days ")
Hi @Stuznet
Use this.
Column = IF ( Table1[DateReceived] - Table1[InvDate] < 51 , "<50 Days","50+ Days ")
Thanks
Raj
@Anonymousperfect as always. 🙂
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 52 | |
| 38 | |
| 37 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 64 | |
| 37 | |
| 32 | |
| 21 |