Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
jose123456
Contributor
Contributor

ayuda crear rango de edad

hola estimados  quiero crear un rango de edades con inline  o con otro formula

ejemplo

18 a 25 'edad 18 a 25'

26 a 35 'edad 26 a 35'

36 a 45 'edad 36 a 45'

5 Replies
Anil_Babu_Samineni

Quieres decir en baldes??

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
jose123456
Contributor
Contributor
Author

Load * inline [

Anil_Babu_Samineni

Lo siento, ¿Puede decirme lo que está buscando en la interfaz de usuario


Load * Inline [

Age

18-25

26-35

36-45

];

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
jose123456
Contributor
Contributor
Author

estimado tengo lo siguiente

sql

SELECT

  to_number(to_char(SYSDATE,'yyyy'))-to_number(to_char(GALAXIS.BCLIENT.DAT_NAI,'yyyy')) as edad,

.... fin

y quiero con un inline  crear  grupos 

18 a 25 'edad 18 a 25'

26 a 35 'edad 26 a 35'

36 a 45 'edad 36 a 45'

Anil_Babu_Samineni

Try this?

Loan *,Num(Date(Trunc(Today(),'yyyy')))-Num(Date(Trunc(Today(),'yyyy'))) as edad

From TableName;

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful