Is there anyway to calculate a column?

i need a appformula to calculate every value of a column.
i tryed with:

SUM(
SELECT(
Aba Controle[Mifare Entregue])
)
but i cant.

2X_a_a40de34f4e3850e8bd636b8be2662fb2ca780c01.png

Solved Solved
0 3 360
1 ACCEPTED SOLUTION

Try with this:

SUM(SELECT(Aba Controle[Mifare Entregue],ISNOTBLANK([Mifare Entregue])))

View solution in original post

3 REPLIES 3

Try with this:

SUM(SELECT(Aba Controle[Mifare Entregue],ISNOTBLANK([Mifare Entregue])))

Its work greats, TKS.

But now i need to Sum only values that column Email is equal useremail() and Column Data is equal today().

because thinking iโ€™m useremail() "johny.freitas@teste.com"
i need to see how much Mifare Entregue i delivered today
i donโ€™t need to know about the otherโ€™s.

i put this app formula in slice but not work:

And([data]=today(),[Email]=useremail()

and still sum every value from column

2X_6_6ab2e26130eb9d5dfa28ab68fe1d3531718c40e3.png

i got it!!!

i put the code at app formula:

SUM(SELECT(Aba Controle[Mifare Entregue], and([Data]=today(),[Email]=useremail())

))

and it works

Top Labels in this Space