Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hi
I am Ilze from eazyBI support.
If you want to display tasks in the report row, select Issue dimension in the report rows, and use Search and bookmark option to find the needed task, and then select it for the report:
Or, if you want to display the list of issue keys in the report cell, you may create a measure (un Measures) using function Generate(): https://docs.eazybi.com/eazybi/analyze-and-visualize/calculated-measures-and-members/mdx-function-reference/generate
Look at the example in eazyBI community how to display the list of issue keys within a selected component: https://community.eazybi.com/t/generating-a-comma-separated-list-of-issues-for-a-component/10163
Feel free to contact us to support@eazybi.com for further assistance!
Ilze, eazyBI support
Hey @Ilze Leite-Apine - eazyBI
Thanks for answering. In the picture below you can see my issue. How could it work? I´m don´t have knowledge in mdx thats why I can not solve it. Epic Name is displayed incolumn. How to do with Task?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Thank you for the screenshot!
You may want to import the issue summary as a property (e.g. Issue Summary), and then you can display it in the report as a column for any issue type.
There is a thread where is described how to get the summary imported as a property, using JavaScript calculated custom field: https://community.eazybi.com/t/get-summary-value/4028/2
Best,
Ilze
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey @Ilze Leite-Apine - eazyBI ,
Thanks. I have tried to follow the steps in this topic https://community.eazybi.com/t/sort-on-a-dimension/3771 but the JavaScirpt-Code did not work. Can you help me? Thanks in advance!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey @Ilze Leite-Apine - eazyBI ,
Another question. My Code seems to be wrong. Can you take a brief look on my code. Thanks! If my date called "Fälligkeitsdatum" ist 10 days before its date and 1 day before itself, my function should return 2.
IIF(
DateBetween([Issue].CurrentMember.GetDate('Fälligkeitsdatum'),
DateAdd('d', -10, [Issue].CurrentMember.GetDate('Fälligkeitsdatum')),
DateAdd('d', -1, [Issue].CurrentMember.GetDate('Fälligkeitsdatum'))),
"2",
""
)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey @Onur Cevik ,
You are right - your given code has a flaw.
This will always return blank as no date can be between its previous day and ten days before itself.
Your expression refers to the same value in all references to "Fälligkeitsdatum".
Please consider what dates you want to compare. Do you really need the same field on all lines? Could it be that the first line should refer to a different field?
Regards,
Oskars / eazyBI support
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
A system administrator can search all users, datauptime. see accounts that they own ... If you see that some user is regularly having problems with entering correct MDX .
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.