Excel as a Database

rigeljr

New Member
Joined
Jul 5, 2021
Messages
17
Office Version
  1. 365
Platform
  1. Windows
Hi there,

I'm not even sure how to title this question properly and I think it is best demonstrated with an image. I'm not sure if this can be done but I would certainly like to try.

We have entries for various units (2026 is just an example). I would like to conditionally format the cells so that for each unit, if the following conditions are met, the cells get highlighted:
- If a "New" is followed by a "New" for the same unit
- If an "Expire" is followed by an "Expire" for the same unit
- If an "Expire" is followed by a "Renew" for the same unit
- If a "Renew" is followed by a "New" for the same unit

1625512712838.png


Happy to clarify the problem if necessary but would really appreciate any help with this.

Thank you!
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Hi Rigeljr,

I've changed some of your values to make sure there's enough test cases.

Does this do what you want?

Rigeljr.xlsx
ABCDEFGHI
1Start DateRecordedLast NameActionUnitMonthTermMonthlyFees
2Jan-2016-JanSmithNew202611$ 184.49$ -
3Feb-2017-FebJonesNew202611$ 184.49$ -
4Mar-2020-MarHuntExpire202611$ 184.49$ -
5Apr-2021-AprJohnsonExpire202611$ 184.49$ -
6May-2023-MayMillsRenew202611$ 184.49$ -
7Jun-2024-JunDunnRenew202611$ 184.49$ -
8Jul-2026-JulWatsonRenew202611$ 184.49$ -
9Aug-2027-AugJonesNew202611$ 184.49$ -
10Sep-2028-SepFeenNew202611$ 184.49$ -
11Oct-2030-OctLoorExpire202611$ 184.49$ -
12Nov-201-DecKlausNew202611$ 184.49$ -
13Dec-202-JanBrundonNew202611$ 184.49$ -
14Jan-213-FebSopeNew190211$ 184.49$ -
15Feb-217-MarKeelExpire190211$ 184.49$ -
16Mar-218-AprNuneExpire190211$ 184.49$ -
17Apr-2110-MayDresterRenew190211$ 184.49$ -
18May-2111-JunOlantRenew190211$ 184.49$ -
19
Sheet1 (2)
Cells with Conditional Formatting
CellConditionCell FormatStop If True
D2:D99Expression=AND(E2=E3,D2="Renew",D3="New")textNO
D2:D99Expression=AND(E2=E3,D2="Expire",D3="Renew")textNO
D2:D99Expression=AND(E2=E3,D2="Expire",D2=D3)textNO
D2:D99Expression=AND(E2=E3,D2="New",D2=D3)textNO
 
Upvote 0
Not exactly, maybe this image will help a bit because this is what the spreadsheet actually looks like without filtering.

As you can see the instances are mostly renews with expires and news scattered in there. What I need the formula to do is to look for the previous instance of each Unit and highlight it if any of the conditions I mentioned above are true.

1625604060139.png
 
Upvote 0
OK, let me take a new approach. Column T has been added to show the previous Action status. This can then be used to set the highlight.

Try it out and let me know.

Rigeljr.xlsx
ABCDEFGHIJST
1Start DateRecordedLast NameActionUnitMonthTermMonthlyFeesMonthPrevious
2Jan-2016-JanSmithNew202611$ 184.49$ - 
3Feb-2017-FebJonesNew202611$ 184.49$ -New
4Mar-2020-MarHuntExpire202611$ 184.49$ -New
5Apr-2021-AprJohnsonExpire202611$ 184.49$ -Expire
6May-2023-MayMillsRenew202611$ 184.49$ -Expire
7Jun-2024-JunDunnRenew202611$ 184.49$ -Renew
8Jul-2026-JulWatsonRenew202611$ 184.49$ -Renew
9Aug-2027-AugJonesNew202611$ 184.49$ -Renew
10Sep-2028-SepFeenNew202611$ 184.49$ -New
11Oct-2030-OctLoorExpire202611$ 184.49$ -New
12Nov-201-DecKlausNew202611$ 184.49$ -Expire
13Dec-202-JanBrundonNew202611$ 184.49$ -New
14Jan-213-FebSopeNew190211$ 184.49$ - 
15Feb-217-MarKeelExpire190211$ 184.49$ -New
16Mar-218-AprNuneExpire190211$ 184.49$ -Expire
17Apr-2110-MayDresterRenew190211$ 184.49$ -Expire
18May-2111-JunOlantRenew190211$ 184.49$ -Renew
19 
Sheet1 (3)
Cell Formulas
RangeFormula
T2:T19T2=IFERROR(INDEX($E$2:$E$9999,AGGREGATE(15,6,ROW($E$2:$E$9999)-ROW($E$1)/(($F$2:$F$9999=F2)*($B$2:$B$9999=AGGREGATE(14,6,$B$2:$B$9999/(($B$2:$B$9999<B2)*($F$2:$F$9999=F2)),1))),1)),"")
Cells with Conditional Formatting
CellConditionCell FormatStop If True
E2:E99Expression=T2&E2="RenewNew"textNO
E2:E99Expression=T2&E2="ExpireRenew"textNO
E2:E99Expression=T2&E2="ExpireExpire"textNO
E2:E99Expression=T2&E2="NewNew"textNO
 
Upvote 0
It looks promising but not quite there yet. Here is a screenshot of the result I get. The formula I used (this is being done inside a table) is:
=IFERROR(INDEX([Action],AGGREGATE(15,6,ROW([Action])-ROW(Leasing_Data[[#Headers],[Action]])/(([Unit No.]=[@[Unit No.]])*([Start Date]=AGGREGATE(14,6,[Start Date]/(([Start Date]<[@[Start Date]])*([Unit No.]=[@[Unit No.]])),1))),1)),"")

1625671603672.png


Can you maybe walk me through your logic in this formula so I can try to tweak it for my own purpose? I've never used an Aggregate function before and some of these functions are used in ways I've never seen before.
 
Upvote 0
Hi rigeljr,

Your latest example seems to have unique Unit numbers so you can't verify the results.

I've created a table and used your formula but the limitation in Excel 2016 that you can't have a space in a Named name means I had to use underscores instead. I entered the formula and it worked fine with my test data (see below but note I've not changed the Conditional Format formulae so you could change them to use Names if you want).

To explain what my formula does:
  • The second AGGREGATE uses the LARGE (14) option to search the start Date for the highest (i.e. latest date). It divides by the Start Date being less than the Start Date of the current row and the Unit number equaling the current row Unit number. If either comparisons return a logical zero then multiplied together they give zero which divided into the Start Date being checked generates a #DIV/0! which is trapped by the AGGREGATE 6 option (AGGREGATE(14,6) which says ignore errors, so it checks the next date. If it finds no such previous date (i.e. this is the first entry for that Unit number) it returns a #NUM! error and the IFERROR puts a null in the "Previous" column.
  • The first AGGREGATE uses the SMALL (15) option to look for the first row (so it's not checking contents of a column but rather each row number in turn) where (using the same logical checks divided into row number) it looks for the date returned by AGGREGATE two for that Unit number. The first AGGREGATE returns that row number and the INDEX retrieves the Action and puts it into Previous.

Rigeljr.xlsx
BCDEFGHIJK
1Start_DateRecordedLast_NameActionUnit_No.MonthTermMonthlyFeesPrevious
2Jan-2016-JanSmithNew202611$ 184.49$ - 
3Feb-2017-FebJonesNew202611$ 184.49$ -New
4Mar-2020-MarHuntExpire202611$ 184.49$ -New
5Apr-2021-AprJohnsonExpire202611$ 184.49$ -Expire
6May-2023-MayMillsRenew202611$ 184.49$ -Expire
7Jun-2024-JunDunnRenew202611$ 184.49$ -Renew
8Jul-2026-JulWatsonRenew202611$ 184.49$ -Renew
9Aug-2027-AugJonesNew202611$ 184.49$ -Renew
10Sep-2028-SepFeenNew202611$ 184.49$ -New
11Oct-2030-OctLoorExpire202611$ 184.49$ -New
12Nov-201-DecKlausNew202611$ 184.49$ -Expire
13Dec-202-JanBrundonNew202611$ 184.49$ -New
14Jan-213-FebSopeNew190211$ 184.49$ - 
15Feb-217-MarKeelExpire190211$ 184.49$ -New
16Mar-218-AprNuneExpire190211$ 184.49$ -Expire
17Apr-2110-MayDresterRenew190211$ 184.49$ -Expire
18May-2111-JunOlantRenew190211$ 184.49$ -Renew
Sheet1 (4)
Cell Formulas
RangeFormula
K2:K18K2=IFERROR(INDEX([Action],AGGREGATE(15,6,ROW([Action])-ROW(Leasing_Data[[#Headers],[Action]])/(([Unit_No.]=[@[Unit_No.]])*([Start_Date]=AGGREGATE(14,6,[Start_Date]/(([Start_Date]<[@[Start_Date]])*([Unit_No.]=[@[Unit_No.]])),1))),1)),"")
Named Ranges
NameRefers ToCells
Action='Sheet1 (4)'!$E$2:$E$18K2:K18
Start_Date='Sheet1 (4)'!$B$2:$B$18K2:K18
Unit_No.='Sheet1 (4)'!$F$2:$F$18K2:K18
Cells with Conditional Formatting
CellConditionCell FormatStop If True
E2:E99Expression=K2&E2="RenewNew"textNO
E2:E99Expression=K2&E2="ExpireRenew"textNO
E2:E99Expression=K2&E2="ExpireExpire"textNO
E2:E99Expression=K2&E2="NewNew"textNO
 
Upvote 0
Can you explain what you mean by "Your latest example seems to have unique Unit numbers so you can't verify the results."?

My formula gives me results in my table as well but the only result that shows up in the "Previous" column is "New" and they are not accurate.

I'm just unsure where I'm going wrong with this.

The main reason I need this is because we have over 300 unique unit numbers and it would save a lot of time to not have to go through each one to make sure none of the conditions have been triggered.
 
Upvote 0
There are multiple entries for the same unit (i.e. different people in the unit at different times in history). I don't know if it helps but a good unique identifier for the Aggregate search is the Start Date*Unit
 
Upvote 0
Can you explain what you mean by "Your latest example seems to have unique Unit numbers so you can't verify the results."?
The screen image starts with a row of Renew Unit 2129 and the last entry is Renew 3118. I understood the check between status entries was for the same Unit. As I only see one row for each Unit then I can't tell if a Previous status of New is correct or not. It works with my test data.

My formula gives me results in my table as well but the only result that shows up in the "Previous" column is "New" and they are not accurate.
Please take a temporary copy of your data and sort by Start Date within Unit No. Then you can tell if it's working or not.

I'm just unsure where I'm going wrong with this.
Then we are both stymied.

The main reason I need this is because we have over 300 unique unit numbers and it would save a lot of time to not have to go through each one to make sure none of the conditions have been triggered.
Yes, I believe I understand what you want to do but unless we can agree on a set of test data with multiple entries for several Unit Nos so we can verify the highlighting then I can't help.

If you can't use XL2BB or provide a Dropbox version of your data then just sort a temporary set of data by Start Date within Unit No. and do a text copy and paste into this forum thread of at least 50 rows.


P.S. I see you've also posted "There are multiple entries for the same unit (i.e. different people in the unit at different times in history). I don't know if it helps but a good unique identifier for the Aggregate search is the Start Date*Unit".
What my formula tries to do is compare each row Action for its Unit with the previous (by Start Date) Action for the same Unit. I believed that was the request of your original post.
 
Upvote 0

Forum statistics

Threads
1,216,107
Messages
6,128,869
Members
449,475
Latest member
Parik11

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