Skip to content
OpenInstall

Billable hours

Open in Airtable

Purpose

Granular work‑log ledger. Each record captures what task was done, for whom, when, how long, and the monetary value to be billed. These entries roll up into invoices and feed revenue analytics & cash‑flow.

Fields

TypeFieldKey Options / FormulaNotes
A
TaskShort description (“API integration”, “Sprint planning meeting”).
DateFormat lDefaults to today; drives weekly / monthly reporting.
HoursFormat h:mmAirtable stores seconds under the hood.
Tags▫︎ Meeting ▫︎ Development ▫︎ ResearchCategorise time for later analysis; add more tags freely.
ClientMust be set first – triggers default rate & currency lookups.
Hourly rate (snapshot)Copied once from Client on record creation; changing the Client’s rate later won’t update old logs.
Currency▫︎ EUR ▫︎ CZK ▫︎ USDAlso copied from Client at creation.
Billable{Hourly rate} * ({Hours}/3600)Shows value in native currency.
Billable (USD)
FormulaIF({Currency}='EUR',{Billable}*1.136,IF({Currency}='USD',{Billable},BLANK()))
Quick FX conversion for consolidated P&L.
InvoiceAttach the entry once you raise an invoice.
Invoice Statusfrom Invoice → StatusPropagates Draft/Sent/Paid/Overdue.
PaidIF({Invoice Status}='Paid', TRUE(), FALSE())Tick auto-updates when invoice is paid.
DetailsMeeting notes / JIRA ticket link etc.
Cashflow itemsBack-references for cash-flow roll-up.
Hourly rate (from Client)Lookup from Client → Hourly rateFor auditing: shows current value on the Client record.
Currency (from Client)Lookup from Client → CurrencyFor auditing: shows current value on the Client record.

Relationships

Gotchas

  • Set the Client first → this snapshots rate & currency. Editing them later does not cascade.
  • Duration unit: Airtable stores seconds. Formula divides by 3600 to convert to hours; make sure the Hours format remains h:mm.
  • Tag diligently – Categories power utilisation dashboards.
  • FX rate is fixed (1 EUR ≈ 1.136 USD) in formula; update periodically or switch to live rates if accuracy matters.
  • One invoice link max – If you need to split hours across multiple invoices, duplicate the record with adjusted durations.
  • Deleting an invoice will not delete hours; they revert to "unbilled" status.

Calculated & AI fields

The Billable field automatically calculates the monetary value by multiplying the hourly rate snapshot by the duration in hours. The Billable (USD) field provides currency conversion for consolidated reporting, while the Paid checkbox dynamically updates based on the linked invoice's payment status.