Best Of
Re: Dataflow resulting in small digit differences
Thank you Antonio.
We've done some research and agree that this is a widespread problem that also affects Microsoft Excel.
Microsoft Knowledgebase Article
This link to Microsoft Support site explains the issue as follows:
"The IEEE 754 standard is a method of storing floating-point numbers in a compact way that is easy to manipulate. This standard is used by Intel coprocessors and most PC-based programs that implement floating-point math.
IEEE 754 specifies that numbers be stored in binary format to reduce storage requirements and allow the built-in binary arithmetic instructions that are available on all microprocessors to process the data in a relatively rapid fashion. However, some numbers that are simple, nonrepeating decimal numbers are converted into repeating binary numbers that cannot be stored with perfect accuracy.
For example, the number 1/10 can be represented in a decimal number system with a simple decimal:
.1
However, the same number in binary format becomes the repeating binary decimal:
.0001100011000111000111 (and so on)
This number cannot be represented in a finite amount of space. Therefore, this number is rounded down by approximately -2.78E-17 when it is stored.
If several arithmetic operations are performed to obtain a given result, these rounding errors may be cumulative."
Thanks
Re: Difference between algorithm and Dataflow
Hi Antonio,
I understand better now. Does this change if i apply a different TOTAL option in the layout block?

Is this a feature that might resolve the behavior?
Thanks
Re: All masks disappeared!!
i have found the duplicated Mask and removed it.
It is all working correctly now.Will remember this next time
Cheers,
Re: Cannot Run Requested Analysis: error
Thanks Michele
i have changed the Row Upper limit and now the report is displaying correctly.
That was very helpful
Re: Unable to apply analytical function
Hi Antonio,
i have tried adding another dimension with 1 element and loaded the infocube against this new element.
It works perfectly, thanks!
Re: Where can I get good icons, backgrounds or palettes?
To add to tools for color palettes I really like to use Adobe Color CC (free). Favorite feature is the ability to upload any image and generate a series of color palettes.
Re: Best steps to create a company master template
Hi Annika,
I really like Bjorn's idea of the template capsule/styleguide.
One thing to add if you are using the web client, do not forget that you can customize the logo and landing page background.
Reference: Theme section of this article
Re: Cannot start Board 10 Server. Original cause: This license does not allow Board to run in 64-bit mod
Hi Christopher,
The server would give you this error if your license key has expired/is not valid. I hope that helps!
Re: How to know which Datareader populates and Infocube
As the others suggest, metadata extract can help you out here.
Not immediately helpful, but keep an eye out for the improvements in BOARD 11 related to metadata mangaement. This type of information will soon be searchable within the BOARD application itself.
Re: Get active person by selecting a date
Hi Egon Santoni, one option to perform the logic inside BOARD is to load both tables as they are and perform the processing via dataflow action of a procedure.
For this you need 4 cubes:
A Begin Date (Date type cube dim by Person) - populate from SQL
B End Date (Date type cube dim by Person) - populate from SQL
C Day (Date type cube dim by day only) - populate via dataflow using Day = day() function to hold date values for every day
D Active Flag (Integer cube by Day by Person)
To populate D, you need IF statement =if(and(c=>a,c=<b),1,0)
You can then multiply any anagraphic data by this ACTIVE flag mapping to have only values shown in days the Person was active, or even use the Active Flag as a filter in the layout depending on what you are trying to do.
I hope it helps!
Thanks,
Audrey