Here in the K20 cell i want to print those data from J3:J14 which are less than 75.
I can count the data by COUNTIF($J$3:$J$14,"<75"). But besides it i want to print those data in K20 cell using , separate.0_Excel_Test.xlsx
Here in the K20 cell i want to print those data from J3:J14 which are less than 75.
I can count the data by COUNTIF($J$3:$J$14,"<75"). But besides it i want to print those data in K20 cell using , separate.0_Excel_Test.xlsx
Hi,
I added a helper column to identify the values less then 75%.
and used this formula in K20![]()
Please Login or Register to view this content.
![]()
Please Login or Register to view this content.
Thanks russkris .
Can you do me a favor? Can you place the formula in my provided excel and then forward it to me? It would be a great help![]()
There's no point as the formula will not work in Excel 2016 - TEXTJOIN is availablle in Excel 2019 and newer versions.
If it could be used, this would suffice for the TEXTJOIN:
=TEXTJOIN(" , ",TRUE,K3:K14)
Last edited by AliGW; 11-29-2023 at 04:09 AM. Reason: Workbook added.
Ali
Enthusiastic self-taught user of MS Excel who's always learning!
Don't forget to say "thank you" in your thread to anyone who has offered you help. It's a universal courtesy.
You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.
NB: as a Moderator, I never accept friendship requests.
Forum Rules (updated August 2023): please read them here.
For completeness (again, works in 2019 and newer), you don't actually need the helper column, as you can do this:
=TEXTJOIN(", ",TRUE,IF(J3:J14<75,J3:J14,""))
This might work in Excel 2016:
=CONCAT(IF(J3:J14<75,J3:J14&", ",""))
It may need entering with CTRL+SHIFT+ENTER.
This would get rid of the trailing comma and space:
=LEFT(CONCAT(IF(J3:J14<75,J3:J14&", ","")),LEN(CONCAT(IF(J3:J14<75,J3:J14&", ","")))-2)
Last edited by AliGW; 11-29-2023 at 04:28 AM. Reason: Workbook updated.
Hi Rezaulkarim, Sorry didn't see you had 2016.. AliGW beat me too it..
Good luck. Make sure to Thank Ali.
Some feedback would have been nice ...
If that takes care of your original question, please choose Thread Tools from the menu link above and mark this thread as SOLVED.
Also, if you have not already done so, you may not be aware that you can thank anyone who offered you help towards a solution for your issue by clicking the small star icon (* Add Reputation) located in the lower left corner of the post in which the help was given. By doing so you can add to the reputation(s) of each of those who offered help.
Obviously russkris. Thanks to you also.
AliGW - Thanks a lot again. You deserve more than thanks![]()
Glad to have helped.
If you have not already done so, you may not be aware that you can thank anyone who offered you help towards a solution for your issue by clicking the small star icon (* Add Reputation) located in the lower left corner of the post in which the help was given. By doing so you can add to the reputation(s) of each of those who offered help.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks