I have a Column Component, and I'm trying to display these two data points with a break line, please help.
right now the result is:
BusinessName UserName
I'd like:
BusinessName
UserName
<Column
calculateCellValue={(cellData: { BusinessName: string; UserName: string }) =>
`${cellData.BusinessName} ${cellData.UserName}`}
/>
"`, because people have made guesses about what you're doing with the calculateCellValue; guesses which turned out to be incorrect. – Nicholas Tower Apr 23 '22 at 18:50