I have a master file and a get data file by the name of sales indents.
Now when i pulled the data from the master file. i put the command as :
"=IF([MasterFile.xlsx]Cust_List!A2=" "," ",[MasterFile.xlsx]Cust_List!A2)"
"I got the data perfect.
But when i saved and closed the sheet, I was shocked to find out this.
"=IF('C:\Users\Vicky\AppData\Roaming\Microsoft\Excel\[MasterFile.xlsx]Cust_List'!A2=" "," ",'C:\Users\Vicky\AppData\Roaming\Microsoft\Excel\[MasterFile.xlsx]Cust_List'!A2)"
1002vicky 9 months ago
What is your question?
[MasterFile.xlsx]Cust_List!A2
has to turn to this:
'C:\Users\Vicky\AppData\Roaming\Microsoft\Excel\[MasterFile.xlsx]Cust_List'!A2
or else it would not know where to look!
The two workbooks are connected and communicating with each other because the file knows where it is saved!
ExcelIsFun 9 months ago
Comment removed
Thahzeeb 1 year ago
HI Mike,
Just another help.
Suppose I have two colums,say Column A and Column C, then how do I check that all the values present in Column A is also there in Column C ?
Earlier I used the ' = ' to check but this does not help if the values in Column C are not in the same order as Column A.
I do not understand your question.
ExcelIsFun 1 year ago
I have a playlist with a few videos about determining whether or not an item is in another list. Search for this playlist title:
'Excel Compare / Merge Two Lists'
Then click on the playlist in the list of returned links.
How about using SUMPRODUCT , IF formulas for example:
=IF(SUMPRODUCT((A1:A3=A6)*(B1:B3=B6)*(C1:C3=C6))>0;"True";"False")
when the table in A1:C3 and testing cells in A6:C6
Valkyries101 1 year ago
Sure!
vlookup with a helper cell is clutch! Thanks Mike
mikeyroro 1 year ago
You are welcome!
Clutch!! I love that word!
I have a master file and a get data file by the name of sales indents.
Now when i pulled the data from the master file. i put the command as :
"=IF([MasterFile.xlsx]Cust_List!A2=" "," ",[MasterFile.xlsx]Cust_List!A2)"
"I got the data perfect.
But when i saved and closed the sheet, I was shocked to find out this.
"=IF('C:\Users\Vicky\AppData\Roaming\Microsoft\Excel\[MasterFile.xlsx]Cust_List'!A2=" "," ",'C:\Users\Vicky\AppData\Roaming\Microsoft\Excel\[MasterFile.xlsx]Cust_List'!A2)"
1002vicky 9 months ago
What is your question?
[MasterFile.xlsx]Cust_List!A2
has to turn to this:
'C:\Users\Vicky\AppData\Roaming\Microsoft\Excel\[MasterFile.xlsx]Cust_List'!A2
or else it would not know where to look!
The two workbooks are connected and communicating with each other because the file knows where it is saved!
ExcelIsFun 9 months ago
Comment removed
Thahzeeb 1 year ago
HI Mike,
Just another help.
Suppose I have two colums,say Column A and Column C, then how do I check that all the values present in Column A is also there in Column C ?
Earlier I used the ' = ' to check but this does not help if the values in Column C are not in the same order as Column A.
Thahzeeb 1 year ago
I do not understand your question.
ExcelIsFun 1 year ago
Comment removed
Thahzeeb 1 year ago
I have a playlist with a few videos about determining whether or not an item is in another list. Search for this playlist title:
'Excel Compare / Merge Two Lists'
Then click on the playlist in the list of returned links.
ExcelIsFun 1 year ago
How about using SUMPRODUCT , IF formulas for example:
=IF(SUMPRODUCT((A1:A3=A6)*(B1:B3=B6)*(C1:C3=C6))>0;"True";"False")
when the table in A1:C3 and testing cells in A6:C6
Valkyries101 1 year ago
Sure!
ExcelIsFun 1 year ago
vlookup with a helper cell is clutch! Thanks Mike
mikeyroro 1 year ago
You are welcome!
Clutch!! I love that word!
ExcelIsFun 1 year ago