I don't know if what you are asking is possible in Explore and Visualize but here is how I do it in SAS Studio (Develop Code and Flows) quite easily.
Example: I have a CAS table called hmeq in the CASlib called public. The code below creates all the stats for numeric columns.
proc mdsummary data=public.hmeq;
output out=casuser.hmeq_summ;
run;
Output:

Hope this helps.
Vj