updated to :
That’s pretty neat! How did you do the card views in white, green, red, blue, and yellow, to show one aggregated value?
To implement the desired changes, target the specific view using its unique ID selector (e.g., #view_xxx
) and apply the appropriate background color styling. Additionally, adjust the Flexbox direction for the inner columns as needed to achieve the desired layout. Aggregated values can be retrieved using a count function formula applied to the “Account User” field, assuming each user is properly linked to the relevant data table.
/* Targeting the specific view and applying background color */
#view_xxx {
background-color: #f5f5f5; /* Replace with your desired color */
padding: 20px;
border-radius: 8px;
}
/* Modifying the direction of inner columns using Flexbox */
div#view_xxx {
display: flex;
flex-direction: column; /* Use 'row' or 'row-reverse' as needed */
gap: 16px;
}
Aggregated Value Calculation:
To extract an aggregated count, apply a count()
function to the Account User field. Ensure each user is correctly linked to your primary data table for accurate results.
Example:
count(Account User)
– This returns the number of linked users per record or view grouping.