How Do I Deliver Custom Data To My Client #34
-
I want to be able to provide my client with a clean google sheet that has the very specific data I'm selling to them. Let's say I'm selling the name, email, address, phone, and credit range. How do I go about that, while protecting the rest of the data in google sheets from being accessed? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
In this video tutorial I deliver a custom formatted google sheet to our fake client. We're able to share this document with VIEW access to our clients email, making it possible to show how many of the different kinds of data we've identified from their anonymous website traffic. Watch the video tutorialSample Docs I was working onSample Sheet - For My Client The Formulas I usedVLOOKUP It would make sense to use LOOKUP instead of VLOOKUP, however... there's a bug/feature in LOOKUP where it doesn't always return the exact match. Instead, it will return the "best" match which is a major problem when we only want exact match. So for that reason we use VLOOKUP.
The COLUMNS To make this easier when we have a very large index, we use COLUMNS to do the count for us. It looks like this.
ISNA and IF When a returned value is Not Available then the system will return #NA in the cell. Not only does this make the cells look unprofessional and even confusing to read, it throws off any COUNTUNIQUE function we might want to use when calculating billing. For that reason we us a combination of IF and ISNA to hide the Not Available values.
Remember to always wrap strings with double quotes IMPORTRANGE Finally, when we've completed the organized tab of data we'll want to import it into a new empty Google Spreadsheet that we can share with the end client. This is where IMPORTRANGE allows us to import an entire tab from another document.
$ When dragging your forumla across multiple rows and cells it will automatically update the values to stay consistent. If you don't want values to update relative to their dragged position, then declare them absolute values by placing a $ sign in front of the range. Placing a $ in front of the letter will make the column drag absolute and in the same way, placing a $ before any range number will make the row an absolute value that does not get updated on drag. |
Beta Was this translation helpful? Give feedback.
In this video tutorial I deliver a custom formatted google sheet to our fake client.
We're able to share this document with VIEW access to our clients email, making it possible to show how many of the different kinds of data we've identified from their anonymous website traffic.
Watch the video tutorial
Sample Docs I was working on
Sample Sheet - For My Client
Sample Sheet - The Ads Lab Full Google Sheet
The Formulas I used
VLOOKUP
Google Docs for VLOOKUP
It would make sense to use LOOKUP instead of VLOOKUP, however... there's a bug/feature in LOOKUP where it doesn't always return the exact match. Instead, it will return the "best" match which is a major problem when we only want exac…