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
  •  | 
  •  

Pregunta

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.

¿Fue útil?

Solución

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.

Otros consejos

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.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top