Calendar Tracker Formula Help

kiyo052

Board Regular
Joined
Oct 11, 2013
Messages
134
Excel 2010

So I don't know how to explain this without having you download the worksheet. SORRY!!

If you download the worksheet, I was wondering if you could guide me to a formula where sheet 1 would equal sheet 2 without having to manually input sheet 2 = sheet 1 for each row. It's practically a chore wheel/ cooking wheel/ tracker.

Thanks to all those who help!!!!

https://sites.google.com/site/upload988/Calendar Tracker Example.xlsx?attredirects=0&d=1
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
If it isn't possible please post saying it's not possible. This way I don't get my hopes up. Thanks to all those who know the solution to this problem!!!!!
 
Upvote 0
Would help if you post up a sample data instead, not everyone is keen on d/l. Do you mean the cells in each row to replicate the same information as another sheet?
 
Upvote 0
I'm pretty much trying to get this sheet 1:

155mk9k.png


into sheet 2 without manually typing C2=Calendar!B3, C3=Calendar!B4, C4=Calendar!B5, so forth and so forth for all of the names, room, dates, and slots.

2evf3ww.png
 
Upvote 0
Maybe this:

In B3 - use Ctrl+Shift+Enter and not only Enter to enter the formula

Code:
=IFERROR(INDEX(Tracker!$C$2:$D$170,
MATCH($A3&OFFSET($B$2,INT((ROWS(B$3:B3)-1)/8)*8,INT((COLUMNS($B3:B3)-1)/2)*2),Tracker!$A$2:$A$170&Tracker!$B$2:$B$170,0),
MOD(COLUMNS($B3:B3)-1,2)+1),"")&""

Markmzz
 
Upvote 0
Another way:

Code:
In B3 - use only Enter to enter the formula

=IFERROR(LOOKUP(OFFSET($B$2,INT((ROWS(B$3:B3)-1)/8)*8,INT((COLUMNS($B3:B3)-1)/2)*2)&$A3,
Tracker!$B$2:$B$170&Tracker!$A$2:$A$170,
OFFSET(Tracker!$C$2:$C$170,,MOD(COLUMNS($B3:B3)-1,2))),"")&""

Markmzz
 
Upvote 0
Do you mean in B3?

Also, I'm suppose to drag it through all 4 columns?

The idea is whatever is put into the Calendar tab it automatically populates into the tracker tab.

Please let me know. Thanks!!!!!
 
Upvote 0
Do you mean in B3?

Also, I'm suppose to drag it through all 4 columns?

The idea is whatever is put into the Calendar tab it automatically populates into the tracker tab.

Please let me know. Thanks!!!!!

Sorry, but I didn't understand.

My formulas are for cell B3 of sheet1 (Calendar) and copy to the right and down.

Markmzz
 
Last edited:
Upvote 0
Sorry for the confusion!

I'm trying to go the other way. I'm going to be updating Sheet 1 (calendar) and I want Sheet 2 (tracker) to update.

I threw examples into that. The original idea is that this is a project where people would print out the calendar and I would be looking at the tracker for specific data and possibly future data.

I've updated the calendar a little bit

2iraqgw.png


I don't need the 3 extra columns in the tracker, but I understand that the columns will effect the formula

Here is the tracker sheet so you don't have to go back up



Again apologizes for the confusion!!!!!!!!!
 
Upvote 0

Forum statistics

Threads
1,214,535
Messages
6,120,090
Members
448,944
Latest member
sharmarick

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