+ Reply to Thread
Results 1 to 2 of 2

Nested if then else to Auto-populate?

  1. #1
    Registered User
    Join Date
    09-28-2011
    Location
    Minneapolis, MN
    MS-Off Ver
    Excel 2003
    Posts
    1

    Nested if then else to Auto-populate?

    I am trying to set up a spreadsheet where I can compare potential real estate acquisitions. I currently have the properties listed on one sheet and the financial analysis on another. I am trying to set up an if then else function that allows me to input a Property Number and have the corresponding values for price, taxes and association costs auto-populate on the Financial Analysis page.

    My initial approach was to use a nested if then else function but my understanding is that I can only nest 7 if then else statements and I am likely to have more properties than that.


    Has anyone had any luck with something like this?
    Attached Files Attached Files

  2. #2
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,485

    Re: Nested if then else to Auto-populate?

    Place this starting In B4 down , in Financial Overview
    =IF(ISERROR(VLOOKUP($B$1,'Property list'!$A$2:$I$10,6,0)),"",VLOOKUP($B$1,'Property list'!$A$2:$I$10,6,0))
    =IF(ISERROR(VLOOKUP($B$1,'Property list'!$A$2:$I$10,9,0)),"",VLOOKUP($B$1,'Property list'!$A$2:$I$10,9,0))
    =IF(ISERROR(VLOOKUP($B$1,'Property list'!$A$2:$I$10,8,0)),"",VLOOKUP($B$1,'Property list'!$A$2:$I$10,8,0))
    =IF(ISERROR(VLOOKUP($B$1,'Property list'!$A$2:$I$10,7,0)),"",VLOOKUP($B$1,'Property list'!$A$2:$I$10,7,0))
    Assumes Improvement costs are Column I

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1