Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Sxbbb
Creator III
Creator III

I want to show every month.

I use code : 

Sum({<TypeStatus={'OUTER'},[Time - Month]= ,[Time - Day]= >} Aggr( Input_SQFT,WO_WorkOrderNo,[Time - Month]))

Sxbbb_0-1690343885408.png

Result : 

Sxbbb_0-1690359038643.png

Values ​​are displayed for only the selected month. But I want to show every month.

If selecting a month The value must still show every month.

What do I have to do?

 

1 Solution

Accepted Solutions
MayilVahanan

Hi

Try like below

Sum({<TypeStatus={'OUTER'},[Time - Month]= ,[Time - Day]= >} Aggr( only({<TypeStatus={'OUTER'},[Time - Month]= ,[Time - Day]= >}Input_SQFT),WO_WorkOrderNo,[Time - Month]))

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

4 Replies
Mark_Little
Luminary
Luminary

I believe that is because you have not include your set expression with the AGRR function to ignore your selections

Sxbbb
Creator III
Creator III
Author

When I don't use Aggr, the value is incorrect. What do I have to do?

 

MayilVahanan

Hi

Try like below

Sum({<TypeStatus={'OUTER'},[Time - Month]= ,[Time - Day]= >} Aggr( only({<TypeStatus={'OUTER'},[Time - Month]= ,[Time - Day]= >}Input_SQFT),WO_WorkOrderNo,[Time - Month]))

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Sxbbb
Creator III
Creator III
Author

thank you very much