Posts

Google Analytics4 Data Extract using Python

Image
  The SERVICE_ACCOUNT_FILE in the script refers to the JSON key file of a service account that has permissions to access the Google Analytics Data API. This file is essential for authentication and should be downloaded from the Google Cloud Console. Steps to Obtain the SERVICE_ACCOUNT_FILE Create a Service Account : Go to the Google Cloud Console. Navigate to IAM & Admin > Service Accounts . Click Create Service Account . Assign Permissions : Assign the role "Analytics Data Viewer" to the service account. Create a Key : After creating the service account, click on it to open the details. Go to the Keys tab and click Add Key > Create New Key . Select JSON format and click Create . This downloads the key file to your computer. Grant Access to the GA4 Property : Go to your GA4 account. Navigate to Admin > Account Access Managemen...

TOP 250 Data Analytical company list

 Hello, Here I'm posting the TOP 250 Data Analytical company list. Top data analytical company

Group Company wise % market share (Mobile Subscribers) - June 2018 india

Image
Company wise % Market Share Mobile Subscriber. Company wise % Market Share Mobile Subscriber

business intelligence reporting tools

:- Business Intelligence apparatuses are application virtual products which gather and process a lot of unstructured information from inward and outside frameworks (counting books, diaries, reports, wellbeing records, pictures, documents, email, video, and other solid business sources) for viable basic leadership. BI apparatuses are utilized to distinguish client conduct, enhance perceivability and effectiveness of a business. These instruments likewise help plan information for investigation, for clients to make reports, dashboards, and information perception. The outcomes enable the two workers and directors to quicken and enhance basic leadership, increment operational effectiveness, pinpoint new income possibilities, distinguish advertise patterns, report honest to goodness KPIs and recognize new business openings. SI.No BI Tool Name Link 1 Jaspersoft https://www.jaspersoft.com/ 2 Tableau https://www.tableau.com/ 3 ...

Set images path in access

Function setImagePath()     Dim strImagePath As String     On Error GoTo PictureNotAvailable     strImagePath = Me.memProperyPhotoLink     Me.memProperyPhotoLink.Locked = True     Me.memProperyPhotoLink.Enabled = False     Me.ImageFrame.Picture = strImagePath     Exit Function PictureNotAvailable:     strImagePath = "C:\db_Images\NoImage.gif"     Me.ImageFrame.Picture = strImagePath End Function

Adjust The Data Range In Pivot Table(EXCEL)

Sub AdjustPivotDataRange() Dim Data_sht As Worksheet Dim Pivot_sht As Worksheet Dim StartPoint As Range Dim DataRange As Range Dim PivotName As String Dim NewRange As String 'Set Variables Equal to Data Sheet and Pivot Sheet   Set Data_sht = ThisWorkbook.Worksheets("Data_Sheet_name")   Set Pivot_sht = ThisWorkbook.Worksheets("Pivot_Sheet_name") 'Enter in Pivot Table Name   PivotName = "National" 'Dynamically Retrieve Range Address of Data   Set StartPoint = Data_sht.Range("A1")   Set DataRange = Data_sht.Range(StartPoint, StartPoint.SpecialCells(xlLastCell)) NewRange = Data_sht.Name & "!" & _     DataRange.Address(ReferenceStyle:=xlR1C1)     'Make sure every column in data set has a heading and is not blank (error prevention)   If WorksheetFunction.CountBlank(DataRange.Rows(1)) > 0 Then     MsgBox "One of your data columns has a blank heading." & vbNewLine _       &...

Extract the frist name & last name in Excel

Example:- Rajeev Ranjan Kumar:-  O/p first name;- = IFERROR(LEFT(A21,(FIND(” “,A21))-1),A21)    mid name;- = MID(A21,FIND(” “,A21)+1,FIND(” “,A21,1+FIND(” “,A21))-FIND(” “,A21)-1) last name:- = RIGHT(A21,LEN(A21)-FIND(” “,A21,FIND(” “,A21)+1)) here “A21″ is a cell value ref.