Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
hello everyone ,
i have a facebook ads by campaign table
Campaign | Impressions |
Camp A | 1500000 |
Camp B | 100500 |
Camp C | 1000 |
Camp D | 10000 |
i want to make a column chart that will show me the campaign in the x-axis and measure of Total impressions
Total impressions = sum(table[impressions])
when i turn on data labels , i want to show a dynamic data label
so if number is in millions it will return 1.00M if the numbe rin thousands then it will return 1.00k
so new format should be i will show in table for better context
Campaign | Impressions |
Camp A | 1.5M |
Camp B | 100.5k |
Camp C | 1.00K |
Camp D | 10.00K |
Solved! Go to Solution.
@eliasayyy , Try like
SWITCH ( TRUE() ,
[Impressions]>= 1000000000 , FORMAT ([Impressions]/1000000000, decimal) & "bn" ,
[Impressions]>= 1000000, FORMAT ([Impressions]/1000000, decimal) & "M" ,
[Impressions]>= 1000, FORMAT ([Impressions]/1000, decimal) & "K",
FORMAT ([Impressions] , decimal)
)
@eliasayyy , Try like
SWITCH ( TRUE() ,
[Impressions]>= 1000000000 , FORMAT ([Impressions]/1000000000, decimal) & "bn" ,
[Impressions]>= 1000000, FORMAT ([Impressions]/1000000, decimal) & "M" ,
[Impressions]>= 1000, FORMAT ([Impressions]/1000, decimal) & "K",
FORMAT ([Impressions] , decimal)
)
Actually with the dynamic formating you don't need to use division.
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
14 | |
10 | |
7 |