Help with function in a financial calendar

saraunger

New Member
Joined
Dec 18, 2020
Messages
2
Office Version
  1. 2013
Platform
  1. Windows
I am working on a financial calendar that will match a specified number with values in a column, then input subsequent values in a separate column.

I used the IF function =IF(Q11:Q17=1,R11:R17,"") and it worked for one cell, but not the rest.

Attached is a picture and the spreadsheet.

Budget Calendar Spreadsheet - editable

Please help! I've been working on this for hours, but it's been a while since I worked with functions, so...

I want all the cells to work like the day on Friday the 1st. I'm not even worried about the balances yet.


Capture.JPG
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
How about
Excel Formula:
=IFNA(INDEX(P11:P45,MATCH(1,Q11:Q45,0)),"")
 
Upvote 0
Another option so you don't need to change the formula each month
Excel Formula:
=IFERROR(INDEX(P11:P45,MATCH(DAY(K10),Q11:Q45,0)),"")
 
Upvote 0
Another option so you don't need to change the formula each month
Excel Formula:
=IFERROR(INDEX(P11:P45,MATCH(DAY(K10),Q11:Q45,0)),"")
YOU ARE A LIFESAVER! You just saved my weekend. Thank you!!!
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,495
Messages
6,125,149
Members
449,208
Latest member
emmac

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top