create values based on another worksheet

TravelingMan

New Member
Joined
Jun 8, 2015
Messages
8
hey guys,

kinda got stumped here..

I have one worksheet that had suite #'s and dates

worksheet #2 has an invoice date column where each suite has an id# and each charge shows a date.

how would I separate the suite id# and dates... there could be more or less charges between each new suite

i.e.

Invoice date

suite 12345
10/21/2015
10/20/2015
9/23/2015

suite 12367

sheet 1 formula would show.. suite 12345 = suite 345(last 3) and each date would be a charge for that suite.

as you can see.. the suite number changes and starts all new charges.. is there a formula that would be able to be copied down to separate the actual suite and the date?

I have tried IF statements but too many are needed.

Thanks!
 

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
I'm not sure I understand what your looking for. But if it is to determine if values in a column have "Suite" in them, and if so take the last three digits, then this could work for you:

=IF(IFERROR(SEARCH("Suite",A1),0)>0,RIGHT(A1,3),"Date")
 
Upvote 0

Forum statistics

Threads
1,215,460
Messages
6,124,949
Members
449,198
Latest member
MhammadishaqKhan

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