Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Rajareddy
Contributor
Contributor

count of industry

in my table like

code,   id,   group,  industry

0001 ,   ab ,  a   ,    bpo

002,    ac ,    c,         it

0020 , tc , a , bpo 

i want show for  how many bpo  industry show in ui and script level

thanks

raja

 

 

 

5 Replies
MayilVahanan

HI

Try like below

Count({<industry  = {'bpo'}>}distinct code)  

or, you can count the id or group , it depends on ur requirement.

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Rajareddy
Contributor
Contributor
Author

i want show  how many  bpos  and how many it  industry count like

bpo 2 

it 1 

etc 2 

MayilVahanan

Hi

Add Industry as Dim, 

Measure: Count(Distinct code)

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Rajareddy
Contributor
Contributor
Author

it's possible to back end

 

MayilVahanan

Hi

Try like below

Load Dim, Count(Distinct code) as NoOfCode resident tablename group by Dim;

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.