Skip to content
Advertisement

calculate the percentage with sql and DOMO

I have a table where I want to calculate the percentage of revenue using the following formula: (Advertiser Revenue / Total Revenue) * 100. Data =>

Partner    Date           Ad Unit   Revenue   Total Revenue
App        1/1/2020       x         10        13
App        1/1/202        y         3         13

Here is my code and what I have tried:

SELECT ad.`Partner`,
       ad.`Date`,
       ad.`Ad Unit`,
       ad.`Revenue`,
       ad.`Total Revenue`
      (ad.`Revenue` / ad.`Total Revenue`) * 100 as `Percentage`
FROM `ad_unit_totals` as ad

Error: syntax error: execute command denied to user

Advertisement

Answer

In Domo, this calculation would best be done at the visualization layer using Beast Mode. Just create your beast mode that is Revenue / Total Revenue.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement