Can I have a table with a date and data entered, and later enter another date with different data in the same cells?

Sedenya

New Member
Joined
Feb 15, 2021
Messages
1
Office Version
  1. 2011
Platform
  1. MacOS
Noob question here!

I want to create a performance report, in which change in status is entered very week.
I could do separate rows for each week, but want to keep the table as slim as possible and still want to be able to track data over time.
So having just one row with a drop-down with pre-entered dates and then being able to enter the corresponding data for each date would be my goal. Is this possible to do?

Thanks very much for any suggestion!

Cheers,
Stefan
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
If you only have one row, how do you want to track data over time?
 
Upvote 0
I have three methods that you can use.

1. "Data with Filter"
- You can have a sheet that has a Data Filter (Ribbon Data> Filter) that allows you to select which date record to show, the rest would be hidden.

2. VLookup with a search box
- You would need to use two sheets a Data Sheet and a Report/Summary sheet
- On the Report/Summary sheet you would have a data validation cell that gets a list of dates from the data sheet and then uses an dynamic array version of the Vlookup() to display the values. (To create a dynamic array formula press ctrl+shift+enter when you complete the formula)
- This version would allow the user to select previous dates to review other reports.
Book1
ABCDEFG
1Select Date9/11/20
2
3Leave TypeNOTEDHMLEAVE MINUTES
4ALFY20 SPEND-10026455
5
Summary Option 2
Cell Formulas
RangeFormula
B4:G4B4=VLOOKUP(B1,Data!A2:G200,{2,3,4,5,6,7},FALSE)
Dynamic array formulas.
Cells with Data Validation
CellAllowCriteria
B1List=Data!$A2:$A3000


3. Vlooklup with Max() date.
- This is similar to the option listed above as you need to use two sheets. The only difference is that instead of allowing a user to select a date from a drop down list, it automatically selects the maximum date value from the data list

Book1
ABCDEFG
1
2DateLeave TypeNOTEDHMLEAVE MINUTES
3Tuesday, August 31, 2021ALIncrement +203529395
4
Summary Option 1
Cell Formulas
RangeFormula
A3:G3A3=VLOOKUP(MAX(Data!A2:A200),Data!A2:G200,{1,2,3,4,5,6,7},FALSE)
Dynamic array formulas.


Book1
ABCDEFG
1ANNUAL LEAVE DateLeave TypeNOTEDHMLEAVE MINUTES
2Monday, August 31, 2020ALBALANCE6965529395
3Wednesday, September 2, 2020ALFY20 SPEND-10028975
4Thursday, September 3, 2020ALFY20 SPEND-10028555
5Friday, September 4, 2020ALFY20 SPEND-10028135
6Tuesday, September 8, 2020ALFY20 SPEND-10027715
39Tuesday, August 31, 2021ALIncrement +203529395
40AL29395
41AL29395
Data
Cell Formulas
RangeFormula
G2G2=(D2*7*60)+(E2*60)+F2
G3:G6,G39:G41G3=G2+IF(AND(NOT(ISBLANK(D3)),NOT(ISBLANK(E3)),NOT(ISBLANK(F3))),(D3*7*60)+(E3*60)+F3,0)
 
Upvote 0

Forum statistics

Threads
1,214,996
Messages
6,122,636
Members
449,092
Latest member
bsb1122

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