beginvbaanalyst
Board Regular
- Joined
- Jan 28, 2020
- Messages
- 141
- Office Version
- 365
- Platform
- Windows
Hi Everyone,
Struggling with three different scenarios; scenario one: if Column Row says "New" return "new", scenario two: if scenario one is true, but date is less than 2/1/2023 return "transfer", scenario three: if scenario one and two are true, if balance is greater than (>) past month balance return "balance went up"))).
My formula is currently this:
=IF([@UpdatedChange]="New",+IF([@OpenDate1]<DATE(2023,2,1),"transfer",+IF([@Balance]>VLOOKUP([@LoanID],'Jan23'!B:H,7,0),"balance went up")))
My returns are #N/A, False, and transfer.
What in my formula is causing this?
Struggling with three different scenarios; scenario one: if Column Row says "New" return "new", scenario two: if scenario one is true, but date is less than 2/1/2023 return "transfer", scenario three: if scenario one and two are true, if balance is greater than (>) past month balance return "balance went up"))).
My formula is currently this:
=IF([@UpdatedChange]="New",+IF([@OpenDate1]<DATE(2023,2,1),"transfer",+IF([@Balance]>VLOOKUP([@LoanID],'Jan23'!B:H,7,0),"balance went up")))
My returns are #N/A, False, and transfer.
What in my formula is causing this?