Check Redo Based on Date difference

mohdamir1989

New Member
Joined
Oct 17, 2017
Messages
42
Hi,

I am looking for a solution to check redo based on multiple criteria. There are basically 2 values in column P and Q it should check both in another sheet named "Previous" if value of P Q matches values in "Previous" and is with 1 month (matching value "Visit") or 3 months (Matching value "no visit") it should write redo.

For Example

25-Nov-17300123129M129129002Visit
29-Nov-17300190332CC72801239No Visit
30-Nov-17300920912F030000124Visit

<tbody>
</tbody>

This data is in sheet 1

Similar format is in sheet "Previous" Now if the value matches in other sheet within 1 Month. It should write redo.

I've gone through the web regarding this but couldn't understand right output.

Your guidance in this regards is highly appreciated.

Best Regards
 
And yes, that VLOOKUP will return max date out of all rows.

IF you have office 16/365 then you can use the new MAXIFS function:

=IF(EDATE(TODAY(),IF(T2="Visit",1,3))>MAXIFS(Previous!C:C,Previous!A:A,P2,Previous!B:B,Q2),"","Redo Visit...")

If you are on an earlier version, then you will need a helper column. In your data add a new column. We'll say column F, and in the top data row (row 2?) enter '=A2&B2'. Fill it to the bottom, and you should then have Bar Code & Asset code in one string.

You can then try this:

=IF(EDATE(TODAY(),IF(T2="Visit",1,3))>VLOOKUP(P2&Q2,CHOOSE({1,2},Previous!F:F,Previous!C:C),2,0),"","Redo Visit...")

Cheers
JB
 
Upvote 0

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
It doesn't matter if the bar code repeats, or the asset code repeats, as long as they don't both repeat.

e.g.

1111 3333
1111 4444
1111 5555
2222 3333
2222 4444

This is fine, as no two rows are the same.

Hope that helps?

Awesome Work Bellman, Really a big round of applause. :D

Cheers Man,

Is it possible if I may refer the Visit to a non blank cell which means it can contain several other duties as well :D
 
Upvote 0
No bother, yeah, just replace it with the cell reference. use dollars in the cell address if it is always the same cell.
 
Upvote 0
No bother, yeah, just replace it with the cell reference. use dollars in the cell address if it is always the same cell.

Dear Bellman,

Thank your for continuous support and guidance. The formula is working great but I found little problem as per requirement. Keeping in view the same scenario I've found below array formula which is working to provide last date against the same Bar Code (P column Value) as I observed I'll have to check last "Customer remarks" each time to verify.

=MAX(IF(P5=Previous!D:D,Previous!H:H),IF(Q5=Previous!E:E,Previous!H:H))

Now I'm wondering how to grab "Tech Remarks" which are located in L Column of previous sheet in the same result with this formula

Best Regards
 
Upvote 0
Hi,

I'm not sure that MAX(IF( formula will do exactly what you want. You may want to test it, but the first 'IF(' should return the max date where D:D = P5. The second will return the max date where E:E = Q5. These two IFs are completely independent. The MAX() will now contain two dates, and return the max of those two. I'm not sure how to get column L for the same row with a formula. It may have to be some simple VBA.

Cheers
JB
 
Upvote 0

Forum statistics

Threads
1,215,473
Messages
6,125,018
Members
449,203
Latest member
tungnmqn90

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