Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
-
Re: How Can I Display Individual values for a Measure field Instead of a Sum?
Hi @Lokesh Obhilineni-Oracle , If you do not intend to use this column as a measure, yes, you should change it in the dataset — change it from a measure to an attribute.1 -
Re: How to calculate Last day of the month for the last 6 months
Example: DAYOFMONTH( TIMESTAMPADD( SQL_TSI_MONTH, -5, TIMESTAMPADD( SQL_TSI_DAY, -DAYOFMONTH(CURRENT_DATE), CURRENT_DATE ) ) ) The inner TIMESTAMPADD() is subtracting the DayOfMonth result from the c…2 -
Re: Filter function for date condition error in OAC calculation
May I suggest: FILTER( WorkDayAccumulated USING( CRTD = SysDate )) or FILTER( WorkDayAccumulated USING( Date = SysDate )) Since CRTD and Date are joined, either one should work OK. I assume your SysD…2 -
Re: Filter function for date condition error in OAC calculation
Hi Kirk Li, I think the measure will work well in your filter if you perform the WorkDayAccumulated (i.e., Rsum) calculation within the dataset, but not if you perform the calculation within the DV w…1 -
Re: Filter function for date condition error in OAC calculation
This doesn't answer your question, but I'm not sure a running sum will work properly in a filter function because — I believe — running sum calculates using filtered rows.2
