I have a report that I'm working on, and i was wondering in a report where I'm generating a calculated field from another field, am i able to reference that generated field within the same report.
i have this field which is assigning a int based on text in a custom form.
displayname=SLA
textmode=true
usewidths=true
valueexpression=IF({DE:PIM | RHC TShirt Size}="0-NotNeeded",0,IF({DE:PIM | RHC TShirt Size}="1-XSmall",3,IF({DE:PIM | RHC TShirt Size}="2-Small",5,IF({DE:PIM | RHC TShirt Size}="3-Medium",6,IF({DE:PIM | RHC TShirt Size}="4-Large",8,IF({DE:PIM | RHC TShirt Size}="5-XLarge",9))))))
valueformat=int
width=50from that field i wanted to use that number above, and multiply that number and add on from a know date.
currently it displays a date, but is subtracting 1 single day?
displayname=Estimated Hand off
textmode=true
usewidths=true
valueexpression=ADDWEEKDAYS({DE:PIM | Engagement Plan Estimated Completion Date}, SUM({DE:SLA}*5))
valueformat=shortAtDate
width=50is this not possiable?
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Correct. Just because you made a valueexpression in a report doesn't mean it's a "calculated field". You specifically need to create that field on a custom form. Else, repeat the calculation again in your second column.
Views
Replies
Total Likes
ugh i figured that was the case. thank you for the info!
Views
Replies
Total Likes
Views
Likes
Replies