great brother........... i have no words to appreciate your explanation
@learnerea2 жыл бұрын
Thank you so much 😀
@meghajain45442 жыл бұрын
Hey you have explained very easily. U have used good approach. To the point and relevant. Fantastic way
@learnerea2 жыл бұрын
Glad you liked it 👏
@ajaykushwaha42332 жыл бұрын
Such a great video, why don’t you create video on SDTM and on AdAM.
@musicophile4342 Жыл бұрын
Thank you sir.. Good explanation 👍
@arorajaonah8830 Жыл бұрын
God bless you man ❤
@ajaykushwaha-je6mw2 жыл бұрын
Salute you Sir.
@narendervatsavai36622 жыл бұрын
Super explanation sir.........
@learnerea2 жыл бұрын
Thanks and welcome
@nd47633 жыл бұрын
Great explanation. Thanks a lot
@learnerea2 жыл бұрын
Glad you liked it 👏
@syedabushra46622 жыл бұрын
Nicely explained
@learnerea2 жыл бұрын
Thank you
@TheYi1985 Жыл бұрын
Fantastic !
@learnerea Жыл бұрын
Glad you like it!
@Dreamgardener747 Жыл бұрын
Thank you so much!!
@learnerea Жыл бұрын
Glad it helped!
@yuanzhou32492 жыл бұрын
where is this "trans" dataset? Thanks!
@roshan65033 жыл бұрын
Can we use proc rank to create counter?
@rohitwalopkar69532 жыл бұрын
Can we use functions like mean , sum in after then statement?
@learnerea2 жыл бұрын
While you are summarising
@rusdianto2683 жыл бұрын
Can we do this in proc sql?
@learnerea3 жыл бұрын
You can use row number partition by in SQL and not in Proc SQL
@mrinmoydas23512 жыл бұрын
How to get last 2 trxn details of each Customer_name?
@learnerea2 жыл бұрын
First sort the data in descending order and then use the same technique to create counter variable and the pick those where counter
@chinthamahesh45613 жыл бұрын
Hi sir, I have a doubt, can u tell me how to read? Data a; Input name$ salary age; Datalines; mani 2300 24 Anil 2500 45 Maheshmani 3000 28 Mahesh chintha 4200 30 ; Run;
@learnerea3 жыл бұрын
Hi Chintha, Interesting. Just use some extra space to separate the values as in the last observation you want to keep first and last name in one variable which have one space in between them. and use an ampersand in the Input statement with name variable. see below e.g. - Data a; Input name & $20. salary age; Datalines; mani 2300 24 Anil 2500 45 Maheshmani 3000 28 Mahesh chintha 4200 30 ; Run;
@chinthamahesh45613 жыл бұрын
@@learnerea thank you sir, its working
@rajutelagareddi20363 жыл бұрын
@@learnerea sir what & do here
@sureshnarayasamy893 жыл бұрын
@@rajutelagareddi2036, Normally char values read only 8 characters long by default , sometime the values of the char exceeds 8 , so we use the char length like positionally $1-20 or in length $20. but these won't work properly if there is a space in the variable value . in our case can't be read properly with $1-20 or in length $20. because it won't take spaces . so , if you put '&' in the beginning like & $20. This means it will considers space even two or more spaces . even if your values is , & $20 this will work ..
@ashutoshlatoriya73633 жыл бұрын
Sir when I am practicing this the count variable is not getting created Why is it ??
@learnerea3 жыл бұрын
Please put your syntax here so that we could review that