Number of children

I need to display the NAME and the number of repetitions of this product in the report, how can I do this?
Products are always different

Below is an example How the report should look like:

Can you give us more infotmation?

I have orders, they have REF, I need to display what and how much is in REF, while the quantity needs to be calculated COUNT (because the quantity is not written, that is, 1 position = 1 piece)

should be displayed in Google docs

I know how to display the order itself, but I don’t know how to display the total quantity of ordered goods for all orders

osition = 1 piece)

1 Like
COUNT(Select(TableName[Column],AND(
   [ColumnA]="123",
   [ColumnB]="456"
)))

Something like this will give you a total with a couple of variables. You can wrap it in <<>> and paste it into your template table if you want.

1 Like

This will not help, because the variations of variables can reach up to 50, and it is not entirely suitable to write them manually.

COUNT(Select(TableName[Column],AND(
   [ColumnA]=[_Thisrow].[ColumnA],
   [ColumnB]=[_Thisrow].[ColumnB]
)))

?

2 Likes

So I won’t list only those products that I need. That is, I will iterate over each variable and display the number, however, they will be repeated and I do not need their repetitions.