SuPuja Creations Logo
SuPujaCreationsAutomation
Business Automation & MIS Solutions
CRM Workplace
Technical Mastery

Honest Skills Matrix & Formula Encyclopedia

A transparent, production-verified breakdown of our technical proficiencies, everyday Google Sheets formulas, script architectures, and modern web integrations.

Strong / Advanced Skills

Core everyday specializations backed by over a decade of hands-on enterprise production usage.

Google Sheets Advanced10+ yrs

Complex multi-sheet models, ARRAYFORMULA, dynamic ranges, master data architectures.

Microsoft Excel & VBA10+ yrs

Advanced macros, PivotTables, Power Query, automated financial reconciliation.

Google Apps Script7+ yrs

Enterprise automation, scheduled triggers, PDF compilation, API integrations, Web Apps.

MIS Architecture & Reporting10+ yrs

Executive reports, departmental KPI scorecards, multi-tier data pipelines.

Business Process Automation8+ yrs

End-to-end digitization of manual sales, purchase, production, and audit workflows.

FMS & Workflow Engineering7+ yrs

Multi-stage flow control (S00..S85), step ownership, turnaround time (TAT), escalations.

Data Cleaning & Master Data10+ yrs

Deduplication, schema normalization, single source of truth data structures.

Looker Studio Dashboards5+ yrs

Interactive executive visual dashboards, real-time data sync, multi-page reports.

Manufacturing Operations Digitization6+ yrs

BOM tracking, rotavator/agri machinery shop floor workflows, vendor job-work.

SOP & Process Documentation9+ yrs

Standard Operating Procedures, Gemba observations, team training manuals.

Practical Working Skills

Technologies actively used for frontend apps, system integrations, and automation pipelines.

REST API & WebhooksProduction

Bi-directional data sync with third-party software (TrackOlap, ESSL, Meta WhatsApp).

HTML5 & CSS3Production

Clean, responsive UI design, mobile-first layouts, responsive data tables.

JavaScript (ES6+)Production

DOM manipulation, async/await, fetch API, LocalStorage persistence, regex parsing.

JSON Data ProcessingProduction

Nested JSON parsing, flattening, schema transformation, and error recovery.

WhatsApp Cloud / Meta APIProduction

AiSensy & Meta webhook integration, automated templates, broadcast queuing.

GPS Geolocation & GeofencingProduction

Browser geolocation API, coordinate distance calculations, boundary fencing.

Camera WebRTC IntegrationProduction

Live selfie capture, canvas image processing, mirrored camera preview.

URL Shortener IntegrationProduction

Insprl API connectivity, click analytics, SMS character optimization.

Modern Stack & Active Proficiencies

Modern web and backend tools actively deployed in scalable production environments.

Next.js & React 19Active Stack

App router, Server Actions, modern component architecture, SSR/SSG.

Supabase & PostgreSQLActive Stack

Relational database schema design, Row-Level Security (RLS), real-time tables.

Vercel Deployment & CI/CDActive Stack

Production web deployments, environment secrets, custom domain routing.

Git & GitHubActive Stack

Version control, repository management, continuous feature iteration.

Node.js Backend APIsActive Stack

Next.js API route handlers, JSON endpoints, server-side data processing.

AI & Chatbot IntegrationActive Stack

LLM API integration, prompt engineering for business automation workflows.

Deep Spreadsheet Logic

Production Formulas Mastered

Formulas we use daily to build robust, crash-proof master data architectures that scale across thousands of rows.

=QUERY()Data Aggregation & Filtering

Executes Google Visualization API SQL queries directly over spreadsheet ranges. Enables multi-condition filtering, sorting, column selection, and dynamic aggregations without modifying raw data.

Enterprise Production Example:
=QUERY(SalesData!A1:Z, "SELECT B, SUM(E) WHERE C = 'Completed' GROUP BY B ORDER BY SUM(E) DESC LABEL SUM(E) 'Total Revenue'", 1)
=IMPORTRANGE()Multi-Sheet Architecture

Securely pulls live datasets across separate Google Sheets files with automated permission management. Foundation for multi-department master data segregation.

Enterprise Production Example:
=IMPORTRANGE("https://docs.google.com/spreadsheets/d/FILE_ID", "MasterDB!A2:H")
=ARRAYFORMULA()Dynamic Formula Expansion

Applies a formula down an entire column dynamically. Eliminates the need to drag formulas manually, preventing accidental deletion and formula inconsistencies.

Enterprise Production Example:
=ARRAYFORMULA(IF(A2:A="", "", IF(D2:D="Yes", E2:E*1.18, E2:E)))
=XLOOKUP()Lookup & Reference

Modern two-way exact/approximate matching with built-in default fallback, replacing fragile VLOOKUP indices and complex INDEX/MATCH boilerplate.

Enterprise Production Example:
=XLOOKUP(A2, Employees!A:A, Employees!D:D, "Not Found", 0)
=FILTER()Dynamic Filtering

Returns filtered array results satisfying single or compound Boolean conditions without altering original rows.

Enterprise Production Example:
=FILTER(Orders!A2:G, (Orders!C2:C="Pending") * (Orders!E2:E<=TODAY()))
=UNIQUE()Data Normalization

Extracts distinct values from a range, removing duplicates dynamically for dropdown lists and validation sources.

Enterprise Production Example:
=SORT(UNIQUE(FILTER(MasterItems!B2:B, MasterItems!B2:B<>"")))
=LAMBDA() & =MAP()Functional Google Sheets

Creates custom reusable lambda functions mapped across row arrays, enabling advanced calculations and multi-step data pipelines natively.

Enterprise Production Example:
=MAP(A2:A, B2:B, LAMBDA(start, end, IF(start="", "", WORKDAY.INTL(start, end, 1))))
=REGEXEXTRACT()Text & String Parsing

Extracts phone numbers, order IDs, invoice codes, or GST numbers from unstructured text fields using regular expressions.

Enterprise Production Example:
=REGEXEXTRACT(A2, "[0-9]{2}[A-Z]{5}[0-9]{4}[A-Z]{1}[1-9A-Z]{1}Z[0-9A-Z]{1}")
=WORKDAY.INTL()TAT & Schedule Math

Calculates business day turnaround times excluding weekend rules and custom corporate holidays for accurate FMS SLA tracking.

Enterprise Production Example:
=WORKDAY.INTL(C2, D2, 1, Holidays!A2:A)
=CHOOSEROWS() & =CHOOSECOLS()Matrix Manipulation

Extracts specific rows or columns from a dynamic array without nested queries, optimizing dashboard reload speed.

Enterprise Production Example:
=CHOOSECOLS(SORT(Sales!A2:K, 5, FALSE), 1, 2, 5)

The 3 Golden Rules of Sheet Architecture

1. Never Mix Input & Calculation

Raw data entry sheets must remain purely tabular without inline calculation formulas. Aggregation must always occur in separate reporting views.

2. ArrayFormulas Over Dragging

Formulas placed in row 1 or 2 with `=ARRAYFORMULA()` ensure that new rows automatically receive calculations without human dragging errors.

3. Master Data Normalization

Item codes, dealer names, and GST numbers must be referenced from validated master lists via XLOOKUP to prevent spelling discrepancies.

Explore Services View Projects Inquire for Automation