Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a chart and i one of the columns shows net price i was wondering how i could show the net price of a value that is in a different field. The field i get net price from is [Net Order Value_NETWR_line]) but the field that the value is in is [Order Document Type_AUART_line]) and the value in [Order Document Type_AUART_line]) is ZWEB that i want to set.
Can you share some sample data/image of chart etc to understand the real need.
t
This is the Chart. I am currently filtering the field with a list box but i want to set it up so it always stay filtered with ZWEB
Do you mean you want to show Net Price always for Sales Doc Type='ZWEB' irrespective of you made selections to 'CR','DR', 'KB' etc in the list box?
If Yes, then use Set expression like Sum({<[Sales Doc Type]={'ZWEB'},[Sales Doc Type]>}[Net Price]) to disregard the selections made in the list box.
why don't you set it in your set analysis
like
sum({<[Order Document Type_AUART_line]={'ZWEB'}>} [Net Order Value_NETWR_line])
Regards
the column field net price is an expression "sum({<Source={'Order_line'}>}[Net Order Value_NETWR_line])"
How Could i set ZWEB to only how if i already have an expression for the net price column
the column field net price is an expression "sum({<Source={'Order_line'}>}[Net Order Value_NETWR_line])"
How Could i set ZWEB to only how if i already have an expression for the net price column
sum({<Source={'Order_line'},[Order Document Type_AUART_line]={'ZWEB'}>}[Net Order Value_NETWR_line])
Regards,