Skip to content

Commit

Permalink
✏️ Fixes formula
Browse files Browse the repository at this point in the history
  • Loading branch information
dej611 committed Oct 11, 2022
1 parent 0a95ab4 commit 67a6e1a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ Example: \`gte(average(bytes), 1000)\`
Returns a value depending on whether the element of condition is true or false.
Example: Average revenue per customer but in some cases customer id is not provided which counts as additional customer
\`sum(total)/(cardinality(customer_id) + ifelse(count() > count(filter=customer_id:*), 1, 0))\`
\`sum(total)/(unique_count(customer_id) + ifelse( count() > count(kql='customer_id:*'), 1, 0))\`
`,
}),
},
Expand Down

0 comments on commit 67a6e1a

Please sign in to comment.