Unified rows

Hi everyone!
I have a problem and I donโ€™t know how to solve it

If โ€œvariedadโ€, โ€œBloqueโ€ and โ€œfechaโ€ are the same
I have to unify the two rows but adding the values of โ€œcantidadโ€
Getting a row with:
โ€œVariedadโ€=Spider Yellow Sol
โ€œBloqueโ€=11
โ€œFechaโ€=2.5.2021
โ€œcantidadโ€=30+50=80

as a result i could display this information in a unified way
Getting just one entry in calendar view:
Spider Yellow Sol BLQ: 11 Cantidad: 80

Thank you!

Solved Solved
0 4 209
1 ACCEPTED SOLUTION

Suvrutt Gurjar Thank you very much!

i have one doubt.
when I enter the formula in the slice it shows me this error, how can I solve it?
sorry, iโ€™m pretty new using this tool

View solution in original post

4 REPLIES 4

Please

  1. create a column called say [VariedadBloqueFecha] with an expression
    CONCATENATE([Variedad], โ€œ-โ€,[Bloque],"-",[Fecha])

  2. Create a slice called say " SelectedParameters" with a filter expression
    [Key Column]= MAXROW( FILTER(โ€œTable Nameโ€, ( [VariedadBloqueFecha]=[_THISROW].[VariedadBloqueFecha])), [_ROWNUMBER])

  3. Create a VC with an expression (This will be an expensive VC and possibly could be replaced by a real column updated by reference action that executes on a form save)

CONCATENATE([Variedad], " BLQ: ",[Bloque],"Cantidad: ", SELECT ( Table Name[Cantidad], [VariedadBloqueFecha]=[_THISROW].[ [VariedadBloqueFecha]))

Use the slice in step 2 as input to the calendar view and use the VC in step 3 as description in that calendar view.

Suvrutt Gurjar Thank you very much!

i have one doubt.
when I enter the formula in the slice it shows me this error, how can I solve it?
sorry, iโ€™m pretty new using this tool

Try this instead:

(
  [Id Corte]
  = ANY(
    ORDERBY(
      FILTER(
        โ€œProyeccion de Corteโ€,
        ([VariedadBloqueFecha] = [_THISROW].[VariedadBloqueFecha])
      ),
      [_ROWNUMBER],
        TRUE
    )
  )
)

Steve,
it worked perfectly
Thank you very much!

Top Labels in this Space