4
Here is something that should be basic, but I cant' figure it out.
So, I have information in columns A:G. Some of the cells in columns B:G are empty, others not.
In the following spreadsheet, how do I find out how many cells in the area B:G are non-empty provided the criterion "John" is filled in column A:A?
My try, which does not work:
=COUNTIFS(A:A, "John", B:G, "*")
+----+-------+---------+---------+---------+-------+-----------+--------+
| | A | B | C | D | E | F | G |
+----+-------+---------+---------+---------+-------+-----------+--------+
| 1 | John | bla | blaba | fsdfs | | sdfsdfdsf | sdfsdf |
| 2 | Bill | sfsdf | | sdfsdf | | sdfsdsd | |
| 3 | Tim | | | | | | |
| 4 | John | sdfsdf | ssdfsdf | | | sdfsdf | sdfsd |
| 5 | Rick | egerreg | g | gergerg | | g | |
| 6 | Steve | | | | ergrg | | |
| 7 | Rick | ergerg | er | gergerg | | | |
| 8 | John | | reger | | | | erge |
| 9 | Tim | | erg | | erg | | |
| 10 | Rick | ergerg | | | | ergerg | erge |
+----+-------+---------+---------+---------+-------+-----------+--------+
Please amend your question to give sample data and examples of what you have tried. – AFH – 2018-06-05T12:19:23.630
Ok, so I converted my spreadsheet to code on this page https://senseful.github.io/text-table/, as suggested by other users, but as you can see, the code does not turn out nicely, but is completely misaligned... What do I do wrong? How should I add code?
– Pjossemannen – 2018-06-05T12:44:55.333