Hello Everyone,
I am working on this problem where I need to have an * by the highest value in a report.
This is my original code:
proc sql flow=6 35;
title 'Orion Library Table Information';
select memname, nobs label='Rows', nvar label='Columns', filesize label='File Size', maxvar label='Widest Column'
from dictionary.Tables
where libname="ORION" and
memtype ne 'VIEW';
I tried to create a case for the maxvar that was:
case
when max(maxvar)
then catx('',maxvar,'*')
else maxvar format
end as Widest_Column
However, I got the following error when I tried to do that:
Result of WHEN clause 2 is not the same data type as the preceding results.
I am not sure how to do this, but if anyone can help me with this, it will be greatly appreciated.
Thanks!
Alisa
maybe could like:
case
when maxvar=max(maxvar)
then catx('',maxvar,'*')
else put(maxvar,best8.)
end as Widest_Column
Ksharp
maybe could like:
case
when maxvar=max(maxvar)
then catx('',maxvar,'*')
else put(maxvar,best8.)
end as Widest_Column
Ksharp
Awesome! Thank you so much! That worked out! :smileygrin:
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.