-
Re: Brand Kit Color Select
if this is a bug, probably should open a support ticket. if it's a product feedback, make sure to put it under the IDEAS exchange board. if you leave it here i am concerned you won't get a response.3 -
Re: Calculate one value against multiple values in different columns
@mHejl if it were me i would unpivot the data (Magic ETL) to collapse the values in columns 2, 3, and 4 into one column then do a windowed MIN function with the Rank and Window tile. If you don't wan…3 -
Re: Is there a way to make column headings on the DOMO table cards dynamic?
@charles , typically we'll see users have Current Month and Previous Month as column titles. you could still adopt @MichelleH 's suggestion if you limit your dataset via filters to the "last x m…1 -
Re: % Sold of Available Inventory (aka Sell-Through)
consider using window functions to get the desired result. if you UNION your data (Consumption UNION to Inventory with a column activity_type = "consumption" or "inventory" so you…2 -
Re: FIXED functions are difficult to understand and should be rolled into WINDOW functions
@chapman just write a CASE statement. SUM(SUM(case when company = 'abc' then `totalSales` end ) FIXED (FILTER DENY company))2