● Professional Formulas — 7 Fields · 22 Ready Templates

Write your formula.
Run it on your phone.

Every profession's recurring calculations, now in your pocket. No paper, no cell references — just your formula. Save once, run forever.

TR EN DE FR ES RU 中文
🧾 Accounting 💰 Finance 🏗️ Construction ⚙️ Mechanical Eng. 📐 Mathematics 🗺️ Surveying 🧪 Chemistry
⚡ 51 Built-in Functions Maths (27) · Text (12) · Date (7) · Logic (4) · Combinatorics (1) — all calculation needs in one platform.
📄 PDF Export Calculation results can be exported as PDF. Works on web app and Android.
📤 Mobile Sharing Share results via WhatsApp, email or other apps. Native sharing support on Android.

🧾 Accounting

VAT calculation, gross-to-net salary, depreciation, profit margin — every accountant's daily recurring operations. Save once, run for every client with the same formula.

Example 1 — VAT Calculation (Tax-Inclusive Price)

?Gross Price (tax-incl.) [number] = gross_price ?VAT Rate (%) [number] = vat_rate @VAT_Amount = gross_price * vat_rate / (100 + vat_rate) #VAT Amount = @VAT_Amount #Net Price (ex-VAT) = gross_price - @VAT_Amount

Example 2 — Gross-to-Net Salary

?Gross Salary [number] = gross ?Social Security Rate (%) [number] = ss_rate ?Income Tax Rate (%) [number] = tax_rate @Social_Sec = gross * ss_rate / 100 @Taxable = gross - @Social_Sec @Income_Tax = @Taxable * tax_rate / 100 #Social Security = @Social_Sec #Income Tax = @Income_Tax #Net Salary = gross - @Social_Sec - @Income_Tax

* Enter your applicable rates. Rates vary by country and income bracket.

Example 3 — Profit Margin & Selling Price

?Cost Price [number] = cost ?Target Profit Margin (%) [number] = margin #Selling Price = cost / (1 - margin / 100) #Profit Amount = cost * margin / (100 - margin) #Markup on Cost (%) = margin / (100 - margin) * 100

Example 4 — Straight-Line Depreciation

?Asset Value [number] = value ?Useful Life (Years) [number] = life #Annual Depreciation = value / life #Monthly Depreciation = value / life / 12 #Depreciation Rate (%) = 100 / life

💰 Finance

Compound interest, loan repayment, return on investment — you don't have to rework the same financial logic from scratch each time.

Example 1 — Compound Interest

?Principal [number] = principal ?Annual Interest Rate (%) [number] = rate ?Term (Years) [number] = years @Balance = principal * POWER(1 + rate / 100, years) #Total Balance = @Balance #Interest Earned = @Balance - principal #Growth Factor = POWER(1 + rate / 100, years)

Example 2 — Monthly Loan Repayment

?Loan Amount [number] = loan ?Monthly Interest Rate (%) [number] = monthly_rate ?Term (Months) [number] = term @r = monthly_rate / 100 @Factor = POWER(1 + @r, term) @Payment = loan * @r * @Factor / (@Factor - 1) #Monthly Payment = @Payment #Total Repayment = @Payment * term #Total Interest = @Payment * term - loan

Example 3 — Return on Investment (ROI)

?Investment Amount [number] = investment ?Revenue Earned [number] = revenue #ROI (%) = (revenue - investment) / investment * 100 #Net Profit / Loss = revenue - investment

🏗️ Construction

Concrete volume, material quantities, floor tiling and paint calculations — instant results on site or with a client.

Example 1 — Concrete Volume & Material Quantities

?Length (m) [number] = length ?Width (m) [number] = width ?Height (m) [number] = height @Volume = length * width * height #Concrete Volume (m³) = @Volume #Cement Bags (50 kg) = CEILING(@Volume * 350 / 50) #Sand (tonnes) = ROUND(@Volume * 0.7, 2)

* Based on C20 concrete mix ratios

Example 2 — Floor Tiling Material

?Room Length (m) [number] = length ?Room Width (m) [number] = width ?Waste Allowance (%) [number] = waste @Net_Area = length * width #Net Area (m²) = @Net_Area #Material to Purchase (m²) = ROUND(@Net_Area * (1 + waste / 100), 2)

Example 3 — Paint Calculation

?Total Wall Area (m²) [number] = wall_area ?Doors & Windows Area (m²) [number] = openings ?Number of Coats [number] = coats @Paintable_Area = wall_area - openings #Paintable Area (m²) = @Paintable_Area #Paint Required (litres) = CEILING(@Paintable_Area * coats / 12)

* 1 litre of paint ≈ 12 m² per coat


⚙️ Mechanical Engineering

Torque, mechanical power, efficiency and pressure calculations — engineering equations now in your pocket, stepped and readable.

Example 1 — Torque & Mechanical Power

?Force (N) [number] = force ?Moment Arm (m) [number] = arm ?Rotational Speed (rpm) [number] = rpm @Torque = force * arm @Angular_Speed = rpm * 2 * 3.14159 / 60 #Torque (N·m) = @Torque #Angular Speed (rad/s) = @Angular_Speed #Mechanical Power (W) = @Torque * @Angular_Speed

Example 2 — Efficiency

?Input Power (W) [number] = input_power ?Output Power (W) [number] = output_power #Efficiency (%) = output_power / input_power * 100 #Power Loss (W) = input_power - output_power

Example 3 — Pressure

?Force (N) [number] = force ?Area (m²) [number] = area #Pressure (Pa) = force / area #Pressure (bar) = force / area / 100000 #Pressure (atm) = force / area / 101325

📐 Mathematics

Quadratic equation roots, circle calculations, combinatorics — mathematical formulas in stepped, readable form.

Example 1 — Quadratic Equation Roots (ax²+bx+c=0)

?Coefficient a [number] = a ?Coefficient b [number] = b ?Coefficient c [number] = c @Discriminant = b * b - 4 * a * c #Discriminant (Δ) = @Discriminant #x₁ = (-b + SQRT(@Discriminant)) / (2 * a) #x₂ = (-b - SQRT(@Discriminant)) / (2 * a)

* Δ must be ≥ 0 (negative Δ yields no real roots)

Example 2 — Circle Area & Circumference

?Radius (r) [number] = r @PI = 3.14159265 #Area = @PI * r * r #Circumference = 2 * @PI * r #Diameter = 2 * r

Example 3 — Combination C(n,k) PRO

?Total Elements (n) [number] = n ?Selected Elements (k) [number] = k #C(n,k) = FACTORIAL(n) / (FACTORIAL(k) * FACTORIAL(n - k))

🗺️ Surveying

Distance between two points, slope gradient and angle, plot area — coordinate and measurement calculations, step by step.

Example 1 — Distance Between Two Points

?X1 Coordinate (m) [number] = x1 ?Y1 Coordinate (m) [number] = y1 ?X2 Coordinate (m) [number] = x2 ?Y2 Coordinate (m) [number] = y2 @dx = x2 - x1 @dy = y2 - y1 #Distance (m) = SQRT(@dx * @dx + @dy * @dy)

Example 2 — Gradient & Slope Angle

?Horizontal Distance (m) [number] = horiz ?Vertical Height Difference (m) [number] = vert @Slope_Ratio = vert / horiz #Gradient (%) = @Slope_Ratio * 100

Example 3 — Plot Area

?Frontage (m) [number] = frontage ?Depth (m) [number] = depth #Area (m²) = frontage * depth #Area (acres) = frontage * depth / 4047 #Area (hectares) = frontage * depth / 10000

🧪 Chemistry

Moles and molecules, dilution calculations, pH — laboratory and field chemistry, step by step and error-proof.

Example 1 — Moles & Molecules

?Mass of Substance (g) [number] = mass ?Molar Mass (g/mol) [number] = molar_mass @Moles = mass / molar_mass #Amount of Substance (mol) = @Moles #Number of Molecules = @Moles * 6.022 * POWER(10, 23)

Example 2 — Dilution (C₁V₁ = C₂V₂)

?Initial Concentration (mol/L) [number] = c1 ?Initial Volume (mL) [number] = v1 ?Target Concentration (mol/L) [number] = c2 #Required Final Volume (mL) = c1 * v1 / c2 #Water to Add (mL) = c1 * v1 / c2 - v1

Example 3 — pH Calculation PRO

?H⁺ Ion Concentration (mol/L) [number] = h_ion #pH = -LOG10(h_ion) #pOH = 14 + LOG10(h_ion)
📱

Run these formulas on your phone.

Copy, paste into SmartFormulaPRO. Enter values, get results. No paper, no cell references. Save once — use every time.

Try for Free →
🌐 Web App
Google Play