Best Of
Re: How I Built It: Dynamic month, quarter, and year filter
We use this same approach! Users love the ability to custom filter and compare relevant time slices ad hoc.
Re: Lv.2 Sprint1 1.5.2
I see you have used the wrong subset in your module - instead of selecting the subset from G3 Location, your module has the subset from Location Flat.
Go to blueprint, and change your dimension using the 'Applies to' column.
Re: 2.3.8.2 Import into DEM01 Module
When map the source data into the timescale,
we should chose the Periods and set Custom fixed-position pattern as YY-MMM.
and watch out the options of Language for month names to be set as English, which is very important.
Re: Can I have a code in a list mapped to different parent between two time periods?
@DanielSvocak I have built something that is a slight variation to what @ramonito recommended. Implement 2 lists for cost centres:
- one that belongs to a financial hierarchy (this is the one you currently have). Follow what ramonito recommended with respect to prefixing the code with the parent. In his example, cost centre is "D" and is either prefixed by the parent "EMEA" resulting in EMEA_D or "EASTASIA" resulting in EASTASIA_D. For purpose of this discussion let's call the list "CC Hierarchy"
- one that is a flat list (only has D as code). For the purpose of this discussion let's call the list "CC Flat"
- create a mapping module between the financial hierarchy cost centre and the flat list cost centre. For example, create module below and call it "CC Mapping"
Item | CC Flat Mapping |
---|---|
EMEA_D | D |
EASTASIA_D | D |
The benefit of this is that you are able to report on cost centre D regardless of its parent while also being able to report on cost centre D specific to its parent.
So if you have a module dimensioned by "CC Hierarchy" and Month with history below. Let's call this module "CC Hierarchy Cost" and line item is value.
| Jan | Feb | Mar | Apr | Jun |
---|---|---|---|---|---|
EMEA_D | 10 | 20 | 30 |
|
|
EASTASIA_D |
|
|
| 40 | 50 |
You can have a module dimensioned by "CC Flat"
| Jan | Feb | Mar | Apr | Jun |
---|---|---|---|---|---|
D | 10 | 20 | 30 | 40 | 50 |
You would just need use a sum function
'CC Hierarchy Cost'.value[SUM: 'CC Mapping'.'CC Flat Mapping']
There's a bit more work you will need to do from the current design state you have at the moment but should help provide flexibility in your model for future use cases. Hope this helps.
Re: Ability to display negative numbers as positives
@MirBorishkevich Went through a similar build requirement recently, and found the following discussion from a few years back to be very helpful.
Re: Time mapping for daily data imports
@rob_marshall thanks, I think I've figured this out.
There was one column in the source file that had a blank column header. If I delete that column in the file then I get the normal time mapping window.
Re: Create Shipping Export Module and Create a Saved View
Hi @PreetiJain
Your module have timescale as week and only that particular line item "Code" has time scale as month that is the reason its showing as subsidiary view. You can get the expected result by changing module time scale as month. You can refer the screenshot attached below.
Regards,
Akhil
Re: 2.3.10 Activity: Create Demand Forecast
Your growth rate seems to be wrong. It should be 2 instead of 0.5. Are you dividing growth rate by 4 in DEM02? It should be just monthly value DEM01 not divided by anything.