I need Google Spreadsheet help. To call multipule cells from sheet one to another sheet in the same workbook, based on a cell marked on sheet1 [closed]

StackOverflow https://stackoverflow.com/questions/23234268

  •  07-07-2023
  •  | 
  •  

문제

If you understand the title or not, then the only thing I can give you to explain my need is a picture.

enter image description here

This should help, but I could answer any questions you have to help me with my needs. I could likely script this, I just am not sure how to, and would love some ideas.

도움이 되었습니까?

해결책

Although I don't know the exact answer for this problem, but I would use a workaround here:

In the "Auto Trader" sheet (cell A3) I would use the FILTER function as follows:

=FILTER(Dealers!A:D;Dealers!E:E="X")

This will produce all the lines from "Dealers" worksheet which matches the criteria that in the appropriate AutoTrader column it has an "X".

Unfortunately, this is a workaround, since you have to do this for all worksheets, modifying the formula accordingly. (like for the next - Cars.com - worksheet: =FILTER(Dealers!A:D;Dealers!F:F="X")

Hope it helped anyway.

다른 팁

You can use Google Query Language https://developers.google.com/chart/interactive/docs/querylanguage

Or make a Google Script to copy data on your "auto trader" sheet.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top