we are doing conversion of Brio reports to Reportnet..................
In Brio Prior function is a function used in the calculated columns, this will give the value of the previous row.
e.g. Prior(Feature) means this will return you the previous row value in Feature column
Vendor Cost_2 =Â if ( Prior ( Feature ) == Feature && Prior ( Product_Usage_Type ) != Product_Usage_Type) {0 }Â else { Vendor_Cost}
Vendor Cost_2 will be 0 if the value in the Feature column is same as the value in the previous row and Product_Usage_type should not be equal to the previous row value in the Product_Usage_Type column, otherwise Vendor Cost_2 will be the value of Vendor_cost column of the same row.
how to replicate the same in Reportnet ?