Linq Query to combine multiple query

Hi,

Would like to ask with regard to the linq query, is that possible to run one linq query to get the below output .
Normal steps I did run 2 query to get amt_positif and amt_negetive.

  1. Run query to get amt_positif
  2. Run another query to get amt_negetif

sample.xlsx (9.4 KB)

Regards

can you if following output would serve:

  • only 3 rows: 1-APR, 2-APR,7-APR
  • pos/neg summed up in the same line

Such a case looks like grouping the data with group by and summing up the pos / neg values from the group members

Hi Peter,

Thank you for the info.
Manage to get the output as per required

Regards

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.