Newbie Excel Question

Romer

New Member
Joined
Jun 18, 2015
Messages
6
Hi guys,

Im new here and not an expert in Excel and i have a simple question hoping you guys can answer.

SAP Quote Number​
Previous Quote NumberActive QuotesStart DateEnd Date
HSG/12345678Inactive1/7/20152/7/2016
HSG/12345679HSG/12345678Inactive1/8/20152/7/2016
HSG/12345680HSG/12345679Active4/8/20152/7/2016
HSG/1234568125/06/20152/7/2016

<tbody>
</tbody>

Im trying to automate the Active Quotes column by doing a formula but i cant seem to figure it out.

Basically if the Column A has a new Quotation it will be active on the start date and it will be deactivated once a new quotation has been created to replace the first quote or if the end date has reach.

Cant seem to figure it out. this is the formula that im using but i dont get the right answer.
=IF(B6>=1,"Active",IF(AND(TODAY()>=N6,TODAY()<=O6),"Active","Inactive"))

Hope you guys can help me.

Thanks & Peace out,
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Im just trying out if column B has a value then it will be inactive.

I was trying this formula also but its also wrong
=IF(VLOOKUP(B2,A:A,1,FALSE),IF(AND(TODAY()>=N2,TODAY()<=O2),"Active","Inactive"))
 
Upvote 0
Try

=IF(OR(ISNUMBER(MATCH(A2,$B$2:$B$30,0)),TODAY()<N2,TODAY()>O2),"Inactive","Active")

The "match" checks if the SAP Quote No. appears in Column Previous Quotes.
 
Upvote 0
Thank your for your quick reply gaz but when i tried it it became all inactive. I tried to play around with the dates and still inactive
 
Upvote 0
In the sample you gave in 1st post they are all inactive!

Change the date on the last record, it becomes Active.

Code:
[TABLE="width: 466"]
<tbody>[TR]
[TD]SAP Quote Number[/TD]
[TD]Previous Quote Number[/TD]
[TD]Active Quotes[/TD]
[TD][/TD]
[TD]Start Date[/TD]
[TD]End Date[/TD]
[/TR]
[TR]
[TD]HSG/12345678[/TD]
[TD][/TD]
[TD]Inactive[/TD]
[TD][/TD]
[TD="align: right"]01/07/15[/TD]
[TD="align: right"]02/07/16[/TD]
[/TR]
[TR]
[TD]HSG/12345679[/TD]
[TD]HSG/12345678[/TD]
[TD]Inactive[/TD]
[TD][/TD]
[TD="align: right"]01/08/15[/TD]
[TD="align: right"]02/07/16[/TD]
[/TR]
[TR]
[TD]HSG/12345680[/TD]
[TD]HSG/12345679[/TD]
[TD]Inactive[/TD]
[TD][/TD]
[TD="align: right"]01/07/15[/TD]
[TD="align: right"]02/07/16[/TD]
[/TR]
[TR]
[TD]HSG/12345681[/TD]
[TD][/TD]
[TD]Active[/TD]
[TD][/TD]
[TD="align: right"]01/06/15[/TD]
[TD="align: right"]02/07/16[/TD]
[/TR]
</tbody>[/TABLE]
 
Upvote 0
I think i confused you with my example sorry for that mate,

If the quotation date is earlier than today and expire after today it will be active
If the Quotation date is later than today it will be inactive and will be active on the start date
If the SAP Quotation number has been replaced by a new SAP Quote Number then the old Quote number will be inactive and the new SAP Quote number will be active
 
Upvote 0
LOL now I am confused, as that is what my formula should do. Can you post a few more examples with what you expect as Active/Inactive?
 
Upvote 0
xfXEGJ5


Im not sure if you can see my pic. but this is the link

Imgur

http://imgur.com/xfXEGJ5

Thanks alot gaz
 
Upvote 0
All of the Start Dates in your pic are greater than today, or they appear in the Prev Quotes column?
 
Upvote 0

Forum statistics

Threads
1,214,614
Messages
6,120,517
Members
448,968
Latest member
Ajax40

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