Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Somar dimensões

Pessoal,

tenho seguinte conjunto de dados:

LOAD Data,

     [Faturamento Tabela - EI]as Fat_EI,

     [Faturamento Tabela - EF I]as Fat_EFI,

     [Faturamento Tabela - EF II]as Fat_EFII,

     [Faturamento Tabela - EM]as Fat_EM

FROM

Como faço para somar o valor dos quatro faturamentos?

sds,

1 Solution

Accepted Solutions
Clever_Anjos
Employee
Employee

sum( Fat_EI + Fat_EFI + Fat_EFII + Fat_EM ) ou

rangesum( Fat_EI ,Fat_EFI , Fat_EFII , Fat_EM )

deveriam ser suficiente

View solution in original post

3 Replies
Clever_Anjos
Employee
Employee

sum( Fat_EI + Fat_EFI + Fat_EFII + Fat_EM ) ou

rangesum( Fat_EI ,Fat_EFI , Fat_EFII , Fat_EM )

deveriam ser suficiente

fabionakashigue
Partner - Creator
Partner - Creator

LOAD Data,

     [Faturamento Tabela - EI]as Fat_EI,

     [Faturamento Tabela - EF I]as Fat_EFI,

     [Faturamento Tabela - EF II]as Fat_EFII,

     [Faturamento Tabela - EM]as Fat_EM,

      [Faturamento Tabela - EI]+[Faturamento Tabela - EF I]+[Faturamento Tabela - EF II]+[Faturamento Tabela - EM]     As Soma

FROM

Not applicable
Author

Obrigado novamente.