Need Urgent Help

fmoqeet

New Member
Joined
Sep 8, 2013
Messages
3
I really need help urgently.

I am working on a project that I need to show my boss tomorrow and can't seem to get a working formula. Actually, after spending a few days on this, I'm basically almost there. It's just this last final part that I still can't seem to figure out and time is clicking.

This is my first time using this forum so I am going to try and share fake data that resembles the data I am dealing with.

IDSign Up RateFinal Win Rate
10190%0.34
10255%0.32
103#N/AFALSE
10461%FALSE
10585%FALSE
10692%FALSE
107#N/AFALSE
10899%FALSE
10953%FALSE

<colgroup><col><col><col></colgroup><tbody>
</tbody>

And then a second sheet has the following data:

IDSign Up Rate Win Rate by Month
M1M2M3M4M5M6M7M8
10190%50%46%34%
10255%40%39%35%32%
10461%59%35%31%21%20%
10585%80%75%57%53%42%41%39%31%
10692%91%85%45%31%26%
10899%94%79%67%65%54%51%45%
10953%34%23%21%19%

<colgroup><col><col><col span="8"></colgroup><tbody>
</tbody>

For the "Sign Up Rate" column on the first row, I took care of it and got

=VLOOKUP(
$A$2:$A$10,Sheet2!$A$3:$B$11,2,FALSE)

as my formula and it works. It checks the ID of the first sheet against the ID of the second sheet and returns the corresponding sign up rate value. Why not just copy and paste the entire sign-up rate rate from Sheet 2 to Sheet 1? Only SOME of the IDs have a Sign Up Rate so I need to check it against the ID.


That was the easier of the two I needed to figure out though. The second one is really troubling me. For the Final Win Rate, I need to bring in the smallest percentage from numerous data entries in a single row - after matching it against the ID. The way I currently have it set up, the formula

=IFERROR(IF(MATCH(A2,Sheet2!A3:A9,0)>0,MIN(Sheet2!C3:J3),""),FALSE)

checks that the two ID's match, and if they do, it returns the minimum from the row. However, this row isn't the corresponding row but the row that is next in line. I don't know how else to explain it. As you can see, the IDs of 101 and 102 are there and return the minimum rate (aka the Final Rate) from the corresponding IDs on the second sheet. However, since there is no 103 ID, the program doesn't match it and everything goes haywire.

I hope I'm making sense. Please advise!

 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Maybe....


A

B

C

1

ID​

Sign Up Rate​

Final Win Rate​

2

101​

90,00%​

34,00%​

3

102​

55,00%​

32,00%​

4

103​

Not Found​

Not found​

5

104​

61,00%​

20,00%​

6

105​

85,00%​

31,00%​

7

106​

92,00%​

26,00%​

8

107​

Not Found​

Not found​

9

108​

99,00%​

45,00%​

10

109​

53,00%​

19,00%​

<TBODY>
</TBODY>


Formula in B2 copied down (Excel 2007 or higher)
=IFERROR(VLOOKUP(A2,Sheet2!A:B,2,0),"Not Found")

Formula in C2 copied down
=IF(ISNUMBER(B2),MIN(INDEX(Sheet2!$C$3:$J$1000,MATCH(A2,Sheet2!$A$3:$A$1000,0),0)),"Not found")

Format column C as %

M.
 
Upvote 0

Forum statistics

Threads
1,216,104
Messages
6,128,856
Members
449,472
Latest member
ebc9

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