Aug 08 2024 07:50 AM
Hello,
Please assist, I have a master listing with 24 columns. This is the main tab on my doc.
What I am trying to accomplish is to have the information autofill into 1 of the other tabs based on a specific criteria. (Location column)
Name | Location | In Salesforce | Date of First encounter | Program | Staff | DOB |
The other tabs are for the various locations (1 of 3), what I am trying to do is have the entire row copy to the associated sheet based on location entry.
Is there a way to do this without having to copy/paste each row?
Thank you
Aug 08 2024 07:54 AM
If you have Microsoft 365 or Office 2021 (or use Excel Online), you can use the FILTER function. It would look like this:
=FILTER('Master List'!A2:X1000, 'Master List'!B2:B1000="Location 1", "")
where Master List is the name of the master sheet, and Location 1 is the name of one of the locations.
Aug 08 2024 08:21 AM
Perfect, thank you!!