Got a VBA question for y'all. Haven't been able to find the exact scenario online due to how specific it is.
When I enter a unique ID number into column A (part of a table), an Index-Match auto-populates info into columns B and C. The only issue is that I want to be able to use ctrl+F to identify info in columns B & C, but it doesn't recognize the values that result from the Index-Match formula. Once the Index-Match has done it's work, I'm fine with replacing the formula for that row with the values it returned.
How can I use VBA so that when I enter any value into column M, it will copy and paste the values for the cells in columns B & C in that row only? I only want it to copy and paste the values for B&C in that row since I want the formula to remain for any subsequent rows that I haven't started using yet. Just to clarify, I would want something like:
When I enter a unique ID number into column A (part of a table), an Index-Match auto-populates info into columns B and C. The only issue is that I want to be able to use ctrl+F to identify info in columns B & C, but it doesn't recognize the values that result from the Index-Match formula. Once the Index-Match has done it's work, I'm fine with replacing the formula for that row with the values it returned.
How can I use VBA so that when I enter any value into column M, it will copy and paste the values for the cells in columns B & C in that row only? I only want it to copy and paste the values for B&C in that row since I want the formula to remain for any subsequent rows that I haven't started using yet. Just to clarify, I would want something like:
- ID is entered in A100.
- Info auto-populates in B100 and C100.
- Any info is entered into M100.
- VBA copies and paste values of B100 and C100.
- ID is entered in A101.
- Info auto-populates in B101 and C101 since the Index-Match formula is still present in that row.
- Any info is entered into M101.
- VBA copies and paste values of B100 and C101.