ContributionsMost RecentMost LikesSolutionsRe: Bi Designer Set the data source to use a cube view MD. Set Add Start End Calendar Time to True which looks like you've done. I sometimes will just set the Time to use the Description instead of Name and Descript...Re: Data Import Error: No valid DataKeys (Scenario / Time) found in data source I've had this issue before and in my case, I didn't have the amount field defined in the data source settings. Not sure if that's related to your issue but something you could check. Re: Capital Planning FY change over issues Do you have one to one transformation rule for 2025M1 in the rule group? Was thinking maybe you had them entered in for prior periods but may need to add 2025M1, 2025M2, etc. in the one to one mappin...Re: Extensible Word Documents If you use the Task Manager Marketplace Solution, go to settings and then XF Doc Settings. Click the icon and then there will some instructions in a text file where to move the file. Re: Need to create an Exlbook in books so we can distribute excel data that is not in a pdf file. Is your book saved as an xfDoc.xlBook? If not, change the file extension to end in .xlBook instead of .pdfBook Re: How to find Entity's Currency in Application Database Tables I found a parameter that uses a method query that was able to tell me which values equated to the currency Re: How to find Entity's Currency in Application Database Tables I was able to locate them by using MemberProperty DimTypeID = 0 (Entity) , PropertyID = 100 and then find your member id and look in the decimal value column. In my case, we have two currencies. 27 ...Re: CV Banded Row You could try something like this on cell formatting If (IsRowNumberEven = True) Then BackgroundColor = LightGray Else If (IsRowNumberEven = False) Then BackgroundColor = White End If Re: Member pulling different description There is a setting in cube views - Advanced - Headers - Culture. Click the box with the ... that you can change to which one you want to use. . Re: Formatting for different member expansions In the header format try this conditional statement: If (ExpansionLevel > 1) Then Bold = True Else Bold = False I had Time in Expansion Level 1 and Scenario in Level 2 and this bolded Scenario and ...