Forum Discussion
esuryahadi
Helper I
2 years agoHelp for card visual
I have the following data, Title RK Progress Field FPP FSA AGN 68,48 SS FPP FSA SS 62,35 SS Bridge SS 4,61 TSS Submarine (UMHK) 11,32 TSS Workshop RAM Field 90 SS R...
- 2 years ago
hi esuryahadi ,
then try like:
measure = IF( ISFILTERED(data[Title RK]) || ISFILTERED(data[Field]), SUM(data[Progress]), 0 )
FreemanZ
Super User
2 years agohi esuryahadi ,
try to plot the card visual with a measure like:
measure =
IF(
ISFILTERED(data[Title RK]),
SUM(data[Progress]),
0
)
it worked like:
esuryahadi
Helper I
2 years agoThank you, but i have little problem.
how if filter by field ?
- FreemanZ2 years ago
Super User
hi esuryahadi ,
then try like:
measure = IF( ISFILTERED(data[Title RK]) || ISFILTERED(data[Field]), SUM(data[Progress]), 0 )- esuryahadi2 years ago
Helper I
Thank you so much.