Share via

Excel IFS function 2 sheets, multiple columns, just a yes/no result.

Anonymous
2018-08-30T21:44:33+00:00

I have a workbook that i need to auto-populate if a payment was made during a certain month on one sheet from the other. 

Sheet 1 is like a registry i enter receipts into.

Sheet 2 is the summary of everything (Hopefully).

I would like to be able to see if a payment was made on Sheet 1.

Sheet1 

These columns must be true:

ColumnA=Year (This has a formula to determine year from the date i enter on column C)

ColumnB=Month (This has a formula to determine month from the date i enter on column C)

ColumnG=Name

ColumnM=Payment (This is a drop down list column, it has "Ordered" or "Payment" for types)

So for Jane Doe on July 2018 was a payment made?

Do I use IF, IFS, AND?

Thank you, 

Eppab

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

8 answers

Sort by: Most helpful
  1. Anonymous
    2018-08-31T16:17:31+00:00

    =IF(SUMPRODUCT(--(Lisa Barcon='2018 Accrued Paid Fines & Fees'!G3:G212364)*(2018='2018 Accrued Paid Fines & Fees'!A3:A212364)*(7='2018 Accrued Paid Fines & Fees'!B3:B212364)*(Payment='2018 Accrued Paid Fines & Fees'!M3:M212364))=1,"Yes","No")

    This is the formula i put in July for the first name on my list. My Sheet1 is called 2018 Accrued Paid Fines & Fees. 

    I plugged in her name of sheet 1 and entered a payment for July 2018, just to make sure she has 1. 

    My result is #NAME?

    So, i am doing something wrong. Thank you for all your help!

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2018-08-31T00:11:38+00:00

    Hi Eppab

    Well I created range names and they can be scoped so they refer to the Workbook so just entering the name refers to both the range and its parent sheet.

    If you have not gone that way you must include the sheet in the range.  If Name refers to Sheet1 D2:D400 the your formula in sheet 2   will be =Sheet1!D2:D400.  The easieast way is to type = then point to the range in sheet 1 and Excel will fill in the reference for you.

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2018-08-30T23:32:08+00:00

    Sheet 1-Registry

    Sheet 2, Summary

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2018-08-30T23:15:55+00:00

    I will try. Will it work with getting data from Sheet1 onto Sheet2?

    Was this answer helpful?

    0 comments No comments
  5. Anonymous
    2018-08-30T23:03:28+00:00

    So for Jane Doe on July 2018 was a payment made?

    Do I use IF, IFS, AND?

    Here is one way with IF & SUMPRODUCT

    =IF(SUMPRODUCT(--(Name=H2)*(Year=I2)*(Month=J2)*(Payment=Payment))=1,"Payment","Not Paid")

    Was this answer helpful?

    0 comments No comments