Slackbot
10/14/2025, 3:00 AMkapa.ai
10/14/2025, 3:00 AMCathy Liu
10/19/2025, 10:10 PMCathy Liu
11/20/2025, 4:53 AMMichael Ullock
11/20/2025, 8:36 AMCathy Liu
11/21/2025, 3:59 AMFOR PREVIOUS, the LY result is identical to this year. FOR PREVIOUS(BUS_DATE.year) works on our other metrics, just not this one. Any idea why that’s happening and how we sort it out?”Michael Ullock
11/21/2025, 3:14 PMFOR PREVIOUS cannot correctly move the calculation one year back and returns the same value as the current year. I would suggest to try and apply FOR PREVIOUS to a simpler base metric and then aggregate it, or you might have to adjust the data model/metric to use the date dimension directly that the fact is connected to.Cathy Liu
12/10/2025, 2:23 AMJulius Kos
12/10/2025, 8:49 AMvic_revenue repeats across many rows for the same month, you need to make sure each month is only counted once. GoodData doesn’t have a direct SUM DISTINCT, but you should be able to achieve the same result using a nested metric:
-- YTD VIC Revenue (sum of distinct monthly values)
SELECT SUM(
SELECT MAX( VIC REVENUE {fact/VGCCC_VENUE_MONTHLY_AGG.LGA_REVENUE} )
BY Month - Month/Year {label/MONTH.month}
WHERE LGA CURR YTD {label/lga_curr_ytd} = "Y"
)
The inner part groups the data by month and takes MAX() of vic_revenue — since the revenue is identical for all rows of that month, this gives one value per month.
• The outer SUM() then adds those monthly values together to get the correct YTD total without double-counting rows.Cathy Liu
12/16/2025, 12:42 AMMauricio Cabezas
12/16/2025, 1:10 AMCathy Liu
12/16/2025, 1:26 AMMauricio Cabezas
12/16/2025, 1:54 AMmessage=Attribute 'latitude' is missing additional LONGITUDE/LATITUDE label
But form your second screenshot, it seems you defined twice the latitude and longitude as independent attribute and label).
As example, you can see the attached screenshot how it is working for me, on my end, there I defined the location as label and then the corresponding latitude and longitude.Cathy Liu
12/16/2025, 2:28 AMMichael Ullock
12/16/2025, 10:10 AMState filter) so that only points from the desired states are plotted.Cathy Liu
12/16/2025, 10:15 PMMauricio Cabezas
12/16/2025, 11:52 PMCathy Liu
12/16/2025, 11:55 PMCathy Liu
12/17/2025, 12:29 AMMauricio Cabezas
12/17/2025, 12:57 AMCathy Liu
12/17/2025, 1:11 AMMauricio Cabezas
12/17/2025, 1:28 AMSorting is available for:
• bar charts
• column charts
• area charts
• combo charts
• bullet charts
• pie charts
• donut charts
• heatmaps
You can sort data:
• Alphabetically
• Numerically
• Chronologically
Cathy Liu
12/18/2025, 2:02 AMMichael Ullock
12/18/2025, 8:17 AM