And that’s not really what it’s about.
Is it possible to make the organization as a table as required by the customer? Here I mean without repeating the merchant name/data.
@duncan
p.s.: Perhaps Ive misspoken. But what I meant was that I want to leave the name of a particular merchant only in the first column. Its much clearer and prettier than repeating the merchant name in every column.
I see what you mean now. You only want Merchant 1 to appear once in the table with all rows associated with it to the right descending until the next merchant.
There’s no way to do this in the UI but you could try making a calculated field. You could rank the values in merchant_name(grouped by each merchant name) by histroy_creation_date. Then using an ifelse function, anywhere that rank <> 1 then ’ ’ (empty string).
This would be very hacky and not something I would recommend doing. The easier way to do this would probably be moving to a pivot table. It would be a different layout but closer to your end goal.