Benjamin S Posted May 3, 2022 Share Posted May 3, 2022 Hello Community, I want to create some basic Tiles on the dashboard in Tibco which include basic KPI oriented data. The table looks like this (after unpivoting) Item From/To Date A Start 01.03.2022 A End 01.05.2022 Now, I want to calculate the amount of items which have been finished between the first day of this year and today (YTD performance). I tried the following custom expression for the y-value in the KPI plot: Count(([From/To]="End") And (DateDiff("day",[Date],Today())31 etc.) However, I am confused about the x-axis setting, because if I am changing the columns there, the value also changes. Am I missing a point here Or is there any basic misunderstanding in my thinking Thank you in advance. Link to comment Share on other sites More sharing options...
Jose Leviaguirre Posted May 11, 2022 Share Posted May 11, 2022 Hello BennyS, Do you have an additional column to indicate if the item was completed or present some kind of progress in order to calculate if it was completed, completed on time or past due Or these dates correspond to the time it took an item to complete from start to finish If that's the case, I assume items in progress will not have an end date, correct I think it is easier for you to work with pivoted data (before you unpivot) and calculate a column if your item was done with 1,0 then sum or "completed" "not completed" and then you can unpivot and calculate for your needs. If(DateDiff("day",[Date],Today()) Link to comment Share on other sites More sharing options...
Benjamin S Posted May 12, 2022 Author Share Posted May 12, 2022 Hello @Jose, thanks for responding to my questions. I achieved my KPI Plot but by using the "Number" Plot which is an extra mod for Tibco, because I failed to get a good-looking solution using the standard KPI tiles in Tibco. The X-Axis is referring to the x-axis of the standard KPI plot - there is the possibility to add a value and a x-axis. Value makes sense. This is the current number to be calculated, but somehow, the value changes if I am setting any x-value entry. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now