Table of count, min and max for multiple columns

Redoute

New Member
Joined
Nov 4, 2018
Messages
12
Hello!

In Excel I want a list of descriptives on multiple columns of a table in the data model. One row for each table column with four columns: column name, value count, min and max values. The data table columns are of different types: text, number and timestamps. Rows are filtered by another column.

My current solution is to define three measures for each column like
Code:
v7_max:=CALCULATE(MAX(table[v7]), table[filtervar]="selected")
Then get the value like
Code:
=CUBEVALUE("ThisWorkbookDataModel","[Measures].[v7_max]")
That's a lot of typing. Is there a more comfortable way to do this?
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.

Forum statistics

Threads
1,223,705
Messages
6,173,989
Members
452,541
Latest member
haasro02

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top