Forum Discussion
Anonymous
5 years agoNot applicable
Maintenance Revenue to exclude ......
From the code below my goal is to exclude "Grip" and "RH RECURE DATABASE SERVICE" from Maint_Revenue column This is the slice of code that needs to be updated to exclude Grip and RH RECURE DATA...
- 5 years ago
Hi Anonymous -
Try this
Maint_Revenue = IF ( NOT ( LEFT ( Contract_Items[QT Package], 4 ) = "Grip" ) && NOT ( Contract_Items[QT Package] = "RH RECURE DATABASE SERVICE" ), Contract_Items[Price Monthly], 0 )Hope this helps
David
dedelman_clng
Community Champion
5 years agoHi Anonymous -
Try this
Maint_Revenue =
IF (
NOT ( LEFT ( Contract_Items[QT Package], 4 ) = "Grip" ) &&
NOT ( Contract_Items[QT Package] = "RH RECURE DATABASE SERVICE" ),
Contract_Items[Price Monthly],
0
)
Hope this helps
David
- Anonymous5 years agoNot applicable
Thanks David. It was very helpful.