fortwrestler
Registered User.
- Local time
- Today, 15:54
- Joined
- Jan 15, 2016
- Messages
- 50
Hello,
I was wondering if there is a way to change certain details in a report to a percentage format based upon the value in another field.
I have a report that generates from a crosstab that displays daily stops. However, on this same cross tab, i have an efficiency value. I would like to display the efficiency as a percentage and keep the other values as standard format.
I'm thinking that there is some VBA that goes along the lines like this
and i have it entered on ReportLoad. However this throws an error.
Is there a better way of doing this? Or is it even possible?
I was wondering if there is a way to change certain details in a report to a percentage format based upon the value in another field.
I have a report that generates from a crosstab that displays daily stops. However, on this same cross tab, i have an efficiency value. I would like to display the efficiency as a percentage and keep the other values as standard format.
I'm thinking that there is some VBA that goes along the lines like this
Code:
IIf(me.SummaryConstant = "EFF", Format(me.day1,"Percent"),"Format(me.day1,"standard"))
and i have it entered on ReportLoad. However this throws an error.
Is there a better way of doing this? Or is it even possible?