Using Dataiku
Sort by:
1 - 7 of
7
1 - 7 of
71
Might try the Window recipe trick indicated here https://community.dataiku.com/t5/Using-Dataiku-DSS/Calculating-Median/m-p/7529/highlight/true#M4069
Hi Data123,
There could be two ways of solving this.
1) Add a computed column (SQL) before the aggregations happen. This would look something like
CASE WHEN pageurl like '%order%' THEN 1 ELSE 0 END
Give this column a name, then use the aggregation functions in the next section to use SUM
2) Use custom aggregates wrapping the computed column and aggregate in one go:
SUM(CASE WHEN pageurl like '%order%' THEN 1 ELSE 0 END)
Hope this helps!
This website uses cookies. By clicking OK, you consent to the use of cookies. Read our cookie policy.
AcceptReject