Index and Match does not calculate, returns #VALUE! #1475
Unanswered
eddietorial
asked this question in
Q&A
Replies: 3 comments 3 replies
-
|
after running the script, and you view the xlsx, what does the formula look like? |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
What happens if you use a simple |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
Any thoughts on this? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have two workbooks,
current_month.xlsxandprevious_month.xlsxI would like to take the values in column J from
previous_month.xlsxand enter them in column J ofcurrent_month.xlsx.My script first imports the 'old' worksheet from
previous_month.xlsxintocurrent_month.xlsx.Now that we have just
current_month.xlsxto work with, Index and Match is used in the 'new' sheet to compare against values in three columns - Plugin_Name, Type, and Year_Month from the 'old' sheet.The formula
=INDEX(old!D:D,MATCH(1,(old!C:C=[@[Plugin_Name]])*(old!B:B=[@Type])*(old!A:A=[@[Year_Month]]),0))works directly in Excel.However, if I attempt it via the module, it does not calculate and instead returns
#VALUE!.Please advise!
current_month.xlsx
index_match_ps_script.txt
previous_month.xlsx
Beta Was this translation helpful? Give feedback.
All reactions