Combining formula
Hi, i need help with combining these two formulas
Formula 1 needs to overtake formula 2 if a date is recorded in "Kunde Bindingstid"
Formula 1
=IF([Kunde Bindingstid]@row = 0; >1; [Kunde Bindingstid]@row)
Formula 2
=IF([Type oppdrag]@row = "Tilkoblingshjelp"; [Mottatt Dato]@row + 14; IF([Type oppdrag]@row = "Grave frem rør til kunde"; [Mottatt Dato]@row + 28; IF([Type oppdrag]@row = "Inst. villaprosjekt FTTH"; [Mottatt Dato]@row + 28)))
What i want out of this formula is:
"kunde Bindingstid" to overwrite the date on "ferdig frist dato" tab
Answers
-
Hi @Lars Andre Hove. If you use =IF(ISDATE( then if its a date tell it to use formula 2, otherwise use formula one.
So it'll be =IF(ISDATE([Kunde Bindingstid]@row), Formula 2, Formula 1)
Assuming your two formulas work, it'll look something like this:
=IF(ISDATE([Kunde Bindingstid]@row), IF([Opperta]@row = "Tilkoblingshjelp"; [Mottatt Dato]@row + 14; IF([Type oppdrag]@row = "Grave frem rør til kunde"; [Mottatt Dato]@row + 28; IF([Type oppdrag]@row = "Inst. villaprosjekt FTTH"; [Mottatt Dato]@row + 28))), IF([Kunde Bindingstid]@row = 0; >1; [Kunde Bindingstid]@row)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.5K Get Help
- 448 Global Discussions
- 145 Industry Talk
- 481 Announcements
- 5.1K Ideas & Feature Requests
- 85 Brandfolder
- 152 Just for fun
- 73 Community Job Board
- 492 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 304 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!