cancel
Showing results for 
Search instead for 
Did you mean: 

Repost using FOX formula

Former Member
0 Kudos

Hi All,

I have a Timestamp field in a cube, i would like to repost the data in that characteristic to contain ' ' or '#'' .

Can anyone pls give me suggestions on writing a fox formula to achieve this.

Thanks in advance.

Tarak

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Take it in a field to be changed and aggregation level and then post it with #.Make sure it is not compounded with another characteristic ,if so then handle it.If check for not getting derived through characteristic relatioship.

For example:

data char_fiscper type 0fiscper.

Foreach char_fiscper.

{0amount,#} = {0amount,char_fiscper}.

endfor.

Why you don't want to use standard Repost.

Regards,

Indu

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi.

May be you dont need FOX, but use REPOST or COY function.

In FROM selection set # and in TO selection set needed timestamp value.

Regards.