Skip to content

Commit

Permalink
Fixing column indices
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-moore-97 committed Dec 26, 2023
1 parent a4c8b52 commit 97ab607
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gdrive/idva/flow_analytics.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ def twitter_x_pivot(sheets_id, names_to_id, col_dict):

def linkedin_pivot(sheets_id, names_to_id, col_dict):
sheets_client.update_cell_value(
sheets_id, SheetsEnum.REKREWT.value, "U5", "LINKEDIN"
sheets_id, SheetsEnum.REKREWT.value, "V5", "LINKEDIN"
) # Pivot table Label
sheets_client.update_cell_value(
sheets_id, SheetsEnum.REKREWT.value, "G1", "LINKEDIN"
Expand All @@ -315,7 +315,7 @@ def linkedin_pivot(sheets_id, names_to_id, col_dict):
FormulaEnum.GET_PIVOT_DATA,
params=[
StringLiteral("SUM of eventCount"),
"U6",
"V6",
StringLiteral("eventName"),
StringLiteral("session_start"),
],
Expand All @@ -325,7 +325,7 @@ def linkedin_pivot(sheets_id, names_to_id, col_dict):
FormulaEnum.GET_PIVOT_DATA,
params=[
StringLiteral("SUM of eventCount"),
"U6",
"V6",
StringLiteral("eventName"),
StringLiteral("first_visit"),
],
Expand Down

0 comments on commit 97ab607

Please sign in to comment.