I’m currently using a HubSpot Workflow to sync Deal record info into a Google Sheet. The integration appears to be working properly, however, I’m noticing certain formulas I’ve created on a separate tab are being randomly changed whenever HubSpot adds new rows during each sync.
Tab #1: “HubSpot Sync”
- The HubSpot Workflow is using this tab to sync Deal data into
- The workflow uses the Deal ID to identify if the Deal already exists on the Google Sheet. If so, then it will update the existing row. If not, it will create a new row.
- This all seems to be working as intended
- There are a lot of columns being mapped for each Row, so for the sake of example, I’ll keep it short:
-- Column A: Deal ID
-- Column B: Deal Name
-- Column C: Deal Stage
-- Column D : Amount
Tab #2: “Formulas”
- I have a series of formulas that are calculating Revenue Recognition info based on the Rows/Data being populated into the ‘HubSpot Sync’ tab
- I’ve noticed that some changes made to the ‘HubSpot Sync’ tab AFTER the Workflow was launched has sometimes caused the mapping settings within the Workflow to break. Because of this, I chose to create this 2nd tab (“Formulas”) so that I could avoid making any changes to the “HubSpot Sync” tab.
- The ‘Formulas’ tab is simply mirroring whatever is on the ‘HubSpot Sync’ tab
- The column Headers for A, B, C, D are the same as the Headers on the ‘HubSpot Sync’ tab (Deal ID [A], Deal Name [B], Deal Stage [C], Amount [D])
- The following formulas are in place:
-- Cell A2: =‘HubSpot Sync’!A2
-- Cell A3: =‘HubSpot Sync’!A3
-- Cell B2: ‘HubSpot Sync’!B2
-- Cell B3: ‘HubSpot Sync’!B3
-- Cell C2: ‘HubSpot Sync’!C2
-- Cell C3: ‘HubSpot Sync’!C3
-- etc. etc. etc.
The problem is that whenever new Rows of data are added to the ‘HubSpot Sync’ tab, the corresponding formulas on the ‘Formulas’ tab are changed to reference other/random cells. The only way I can fix this is to re-drag the formulas in each column on the ‘Formulas’ tab down to the bottom of each Column so that the formulas will reference the correct cells on the ‘HubSpot Sync’ tab again.
Example:
- Let’s say I have 5 rows of data that have been synced to the ‘HubSpot Sync’ tab
- The ‘Formulas’ tab is showing the same information within those 5 Rows of data
- Then the workflow syncs a new Deal to the Google Sheet (Row #6)
- When I look at the ‘Formulas’ tab and view Row #6, it’s empty. When I check the formulas for the four cells in Row #6, I SHOULD be seeing the following:
-- Cell A6: =‘HubSpot Sync’!A6
-- Cell B6: =‘HubSpot Sync’!B6
-- Cell C6: =‘HubSpot Sync’!C6
-- Cell D6: =‘HubSpot Sync’!D6
BUT instead, I’m seeing something random like:
-- Cell A6: =‘HubSpot Sync’!A14
-- Cell B6: =‘HubSpot Sync’!B14
-- Cell C6: =‘HubSpot Sync’!C14
-- Cell D6: =‘HubSpot Sync’!D14
So again, to fix this, I have to highlight Cells A5 through D5, and drag their formulas down to the cells below on Row #6
Does anyone know why new Rows added to the ‘HubSpot Sync’ tab are causing the existing formulas on the ‘Formula’ tab to reference other/random cells from the ‘HubSpot Sync’ tab?
Thanks