Count the Total Number of Results in Drupal Views
![Count the Total Number of Results in Drupal Views](https://ostraining.com/wp-content/uploads/drupal/count-views.jpg)
Yes, this is definitely possible. To make this work, you will need Views, plus also the Token module installed.
Start with a long list of entries in a View, as in the image below:
![List of Drupal content to be counted](https://ostraining.com/wp-content/uploads/images/drupal/views-results/media_1452716187478.png)
- Go to edit the view.
- Click “Add” next to either “Header” or “Footer” in the center of the view:
![Header and Footer area of Drupal views](https://ostraining.com/wp-content/uploads/images/drupal/views-results/media_1452716238162.png)
- Choose “Global: Result summary”
- Click “Apply (All displays)”
![Drupal views and Global: Result summary](https://ostraining.com/wp-content/uploads/images/drupal/views-results/media_1452716278109.png)
On the next screen, you can chose tokens to put into the “Display” area. Here are the tokens you can use:
@start — the initial record number in the set
@end — the last record number in the set
@total — the total records in the set
@name — the human-readable name of the view
@per_page — the number of items per page
@current_page — the current page number
@current_record_count — the current page record count
@page_count — the total page count
Once you’ve chosen your options, click “Apply (All displays)”.
![Tokens in Drupal Global Result Summary](https://ostraining.com/wp-content/uploads/images/drupal/views-results/media_1452716312580.png)
Save your view and you’ll now see that the number of results is automatically calculated:
![Drupal view with counter of total results](https://ostraining.com/wp-content/uploads/images/drupal/views-results/media_1452716363914.png)
how can i format @total result, e.g. 1.000 and 1.000.000
you can add classes, e.g.
.
how to get total no of record in table using custom modules
https://drupal.stackexchange.com/questions/265876/how-to-get-count-of-total-record
{% set view = drupal_view_result(‘related’, ‘block_1’)|length %}
{% if view > 0 %}
{{ drupal_view(‘related’, ‘block_1’) }}
{% endif %}