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
-
I have two workbooks,
current_month.xlsx
andprevious_month.xlsx
I would like to take the values in column J from
previous_month.xlsx
and enter them in column J ofcurrent_month.xlsx
.My script first imports the 'old' worksheet from
previous_month.xlsx
intocurrent_month.xlsx
.Now that we have just
current_month.xlsx
to 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