Find a value based on dates

laxmaster3000

New Member
Joined
Feb 24, 2016
Messages
27
Hi Everyone,

I'm trying to find a way to pull data values from one sheet and enter them into a table on another sheet.

For example, on May 1st 2018 100% of a job is completed:

[TABLE="width: 188"]
<colgroup><col><col></colgroup><tbody>[TR]
[TD]01-May-18[/TD]
[TD]100%[/TD]
[/TR]
[TR]
[TD]27-Apr-18 [/TD]
[TD]98.75% [/TD]
[/TR]
[TR]
[TD]26-Apr-18[/TD]
[TD]93%[/TD]
[/TR]
[TR]
[TD]10-Apr-18 [/TD]
[TD]83% [/TD]
[/TR]
[TR]
[TD]01-Apr-18 [/TD]
[TD]75%[/TD]
[/TR]
[TR]
[TD]15-Mar-18[/TD]
[TD]50%[/TD]
[/TR]
[TR]
[TD]01-Mar-18[/TD]
[TD]20%[/TD]
[/TR]
[TR]
[TD]01-Feb-18[/TD]
[TD]5%[/TD]
[/TR]
</tbody>[/TABLE]

I want to set up another table that shows month to month progress for various projects:

[TABLE="width: 360"]
<colgroup><col width="72" span="5" style="width:54pt"> </colgroup><tbody>[TR]
[TD="class: xl65, width: 72"]Start[/TD]
[TD="class: xl65, width: 72"]90 Days[/TD]
[TD="class: xl65, width: 72"]60 Days[/TD]
[TD="class: xl65, width: 72"]30 Days[/TD]
[TD="class: xl65, width: 72"]Finish[/TD]
[/TR]
[TR]
[TD="class: xl66"]0%[/TD]
[TD="class: xl66"]5%[/TD]
[TD="class: xl66"]20%[/TD]
[TD="class: xl66"]75%[/TD]
[TD="class: xl66"]100%[/TD]
[/TR]
</tbody>[/TABLE]

How can I get these numbers using a formula?

Thanks for the help!
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
If you want month to month progress you should stick with the month dates (01-Feb-18, 01-Mar-18, 01-Apr-18, etc) and not have 30 60 90 days.
That way you can just use a simple VLOOKUP to return the percentage if there is always an entry for the 1st of the month.

Let's do it your way: 01-May-18 minus 90 days is NOT 01-Feb-18, it's 31-Jan-18.
You have no percentage for 31-Jan-18 in your table.
 
Upvote 0

Forum statistics

Threads
1,225,757
Messages
6,186,850
Members
453,379
Latest member
gabriellegonzalez

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