Say I have table output like this:

node | body | count
-------------------------------
node 1 | node 1 text | 1
node 2 | node 2.1 text | 1
node 2 | node 2.2 text | 1
node 3 | node 3.1 text | 1
node 3 | node 3.2 text | 1

I want it to be like this:

node | body | count
-------------------------------
node 2 | node 2.1 text | 2
-------- node 2.2 text
node 3 | node 3.1 text | 2
-------- node 3.2 text
node 1 | node 1 text | 1

I tried the views group by module, views cross tab, but it was no difference without using it. Is there a module to do something like this? I'm guessing I'll need to do some custom coding in the template, but just checking in case there is.

Comments

WorldFallz’s picture

I've not seen one-- definitely looks like a custom template file.

peterjlord’s picture

Views Custom Field may do what you want.