cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

Error in Condition Statement

I'm looking for some fresh eyes to help me de-cypher my error(s) in the below, please.

 

The error appears to be at the parentheses after the DateAdd in the two conditions. The error returned is: Invalid number of arguments: Received 1, expect 2 - 3.

 

Thoughts?

 

Thank you!

 

CountRows(ECMmbrCQSmryGallery.AllItems.CQTitle) >=5 && DateAdd (Today() - DateValue(ECMmberDteofCQFld.Text) <1 && StartsWith(ECMmbrCQTitleFld.Text, "Firefighter") && IsBlank(LookUp(ECMmbrCQSmryGallery.AllItems, ComplianceStatus="Noncompliant")) || CountRows(ECMmbrCQSmryGallery.AllItems.CQTitle) <=4 && DateAdd (Today() - (DateValue(ECMmberDteofCQFld.Text) <1 && StartsWith(ECMmbrCQTitleFld.Text, "Firefighter") && IsBlank(LookUp(ECMmbrCQSmryGallery.AllItems, ComplianceStatus="Noncompliant"))  

14 REPLIES 14
RandyHayes
Super User
Super User

@Anonymous 

There are definitely errors in your formula.  Can you share where this formula is used?  Is it intended to return a true/false condition or a value?

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!
Anonymous
Not applicable

It is used to set the default position of a Toggle control.

 

This image is older. I'm providing it for reference; disregard the condition in it. The latest condition is the one you already have.

 

My original condition is below; but, I realized it wasn't considering all needs.

 

     CountRows(ECMmbrCQSmryGallery.AllItems.CQTitle) >=5 && IsBlank(LookUp(ECMmbrCQSmryGallery.AllItems,

     ComplianceStatus="Noncompliant")) 

 

The goal is to set the Toggle to 'true' for 'Compliant' condition, and 'false' for "Noncompliant".

 

The condition(s) -

 

Gallery:

Count the Rows; If there are ONLY four the CQTitle must include a Title that StartsWith "Firefighter" and that document's date of issue (DteofCQ) must be within 720 days of Today; And If none of the ComplianceStatus is "Noncompliant" set the Toggle to 'true'.

 

Or

 

Count the Rows; If there are more than four the CQTitle must include a Title that StartsWith "Firefighter", with any DteofCQ, and a Title that StartsWith "Live" (for Live Fire Refresher), with a date of issue (DteofCQ) that must be within 720 days of Today; And if no item in ComplianceStatus is "Noncompliant" set the Toggle to 'true'.

 

In the example below the Toggle should default to 'true'; it did not.

 

Also ComplianceStatus is getting content from a calculated field in SP. I understand this could cause problems.

     ECMmberComplianceStatusFld.Text is being populated by ThisItem.ComplianceStatus

 

Toggle Calc.PNG

RandyHayes
Super User
Super User

@Anonymous 

So as I see if from your logic, there are three conditions that any one would turn the result to "true":

1) All items show "Noncompliant"

2) There are 4 items that start with Firefighter and that are less than 720 days

3) There are more than 4 firefighter ones AND any other item starts with "Live" with less than 720 days

 

If so, then this is the formula for that:

(CountRows(Filter(ECMmbrCQSmryGallery.AllItems, ComplianceStatus="Noncompliant") = 0) ||
(CountRows(Filter(ECMmbrCQSmryGallery.AllItems, StartsWith(ECMmbrCQTitleFld.Text, "Firefighter") && (Value(yourDaysToRenewalLabel.Text)<720))) = 4) ||
(
    (CountRows(Filter(ECMmbrCQSmryGallery.AllItems, StartsWith(ECMmbrCQTitleFld.Text, "Firefighter"))) > 4) &&
    (CountRows(Filter(ECMmbrCQSmryGallery.AllItems, StartsWith(ECMmbrCQTitleFld.Text, "Live") && (Value(yourDaysToRenewalLabel.Text)<720))) > 0) 
)

Now, of special note, rather than redo the date logic in the formula, it appears you have already calculated this in a label in your Gallery...just use that as the value.  No need to calculate again.  IN the above formula, I referred to it as yourDaysToRenewalLabel.  Just replace that with the real name from your gallery.

 

 

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!
Anonymous
Not applicable

I like the using the Days to Renewal field content already available. Duh; man, how did I miss that?

To your assumptions:

1) If All items show "Noncompliant" Toggle = false - This is true, if ANY item in the Compliance Status returns 'Noncompliant' Toggle default position = false.

2) There are 4 items that start with Firefighter and that are less than 720 days - No. There are only two items that start with Firefighter (Firefighter I or II). There must be a minimum of four CQ Titles (the names of the others don't matter to the existing condition, but here are all the minimum CQ Title, in case they matter now):

Firefighter I or Firefighter II (if there is NO Live Fire Refresher document loaded the Firefighter I or II Date of CQ must be within 720 days of Today).

Live Fire Refresher (If there is a Live Fire Refresher the Date of CQ must be within 720 days of Today, and the date of the FFI or FFII is no longer relevant)

Medical, SCBA Fit Test, Fitness Test

3) There are more than 4 firefighter ones AND any other item starts with "Live" with less than 720 days - No.

Please see the following are examples.

Four Doc Example:

FFI or FFII with Date of CQ within 720 days of Today (and NO Live Fire Refresher); plus Compliant SCBA Fit Test, Medical, and Fitness Test - Toggle 'true'.

Five or More Doc Example:

FFI and/or FFII with Date of CQ within 720 days of Today (with no Live Fire Refresher); plus Compliant SCBA Fit Test, Medical, and Fitness Test - Toggle 'true'.

Five or More Doc Example:

FFI and/or FFII with any Date of CQ; plus Live Fire Refresher within 720 days of Today; plus Compliant SCBA Fit Test, Medical, and Fitness Test - Toggle 'true'.

Five or More Doc Example:

FFI or FFII with any Date of CQ; plus Live Fire Refresher with date beyond 721 days or more from Today; plus Compliant SCBA Fit Test, Medical, and Fitness Test - Toggle 'false'.

RandyHayes
Super User
Super User

@Anonymous 

Yes...always reference what you have already put more than 2 seconds of work into - that's 2 seconds you get back in life 🙂

 

So I am somewhat lost on all of the scenarios as I am not intimately familiar with your data as you are.

But, I believe I presented an approach in the formula I last provided with is the key to doing what you want - and that is to Filter the AllItems not just reference them and figure it out in the rest of the formula.

The idea is, create a filter on the AllItems with the criteria that meets what you need and then count the number of occurrences and see if it is equal to or less/greater than what you need to meet the criteria.  The result of that (boolean) And'ed or Or'ed with all of the other conditions will give you a final result of true or false for your toggle.

 

Can you work your logic into the formula I provided?

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!
Anonymous
Not applicable

Ok, I got it to this. I was running around the house hi-fiving myself and dislocating my shoulder patting myself on the back. Then, I ran a few more tests...

 

The new condition and a current screenshot are below. In this example the Toggle should be true (green). Any thoughts on where my error lies?

 

There are no "Noncompliants". There is at least one CQTitle with "Firefighter" in it. There are more than four (4) Items displayed. The Live Fire Refresher is still valid for 364 more days. The Member should be 'Active'.

 

(CountRows(ECMmbrCQSmryGallery.AllItems.CQTitle) =4 &&
(CountRows(Filter(ECMmbrCQSmryGallery.AllItems, ComplianceStatus="Noncompliant"))) =0 &&
(CountRows(Filter(ECMmbrCQSmryGallery.AllItems, StartsWith(ECMmbrCQTitleFld.Text, "Firefighter"))) >0 && (Value(Today()-ECMmberDteofCQFld.Text)>0))) ||
(CountRows(ECMmbrCQSmryGallery.AllItems.CQTitle) >4 &&
(CountRows(Filter(ECMmbrCQSmryGallery.AllItems, ComplianceStatus="Noncompliant"))) =0 &&
(CountRows(Filter(ECMmbrCQSmryGallery.AllItems, StartsWith(ECMmbrCQTitleFld.Text, "Live"))) >0 && (Value(ECMmbrDaystoRenewalLbl.Text)>0)))

 

3csman_0-1607031190125.png

 

RandyHayes
Super User
Super User

@Anonymous 

Now don't go dislocatin' any arms yet!!

Your formula will not give you what you want.  First, you need to move the Value of the Label into the Filter not outside like you have.  If you do that, then your formula will only be evaluating against the first any only label in the gallery.  It needs to be inside the filter for it to be evaluated properly.  And again, you already have the calculation there in that label, so just use that number - don't reevaluate the date span.

 

I believe I have your logic down - or at least I am closer.  It's hard to keep on top of all the things on the plate and work out the logic exactly as you describe.  But I have read through it several times and I believe the below formula should be spot on.  I might be backward with the true and false, but I have annotated it in the formula below.  What I have not done is set up a test scenario to flush it all out with 100% confidence.  Just drawing on experience and my internal formula editor (i.e. there might be some mismatched parens or syntax issues)

// If All items show "Noncompliant" then false - 
// in this formula the concept is if this countrows returns true (there are 0 rows with NonCompliant) then there are zero items that are listed as 
// noncompliant.  If it is 1 (or more) then this will be false.  This is the base of all the conditions and the result of this MUST be AND'ed with
// any other ctriteria
 
    (CountRows(
        Filter(ECMmbrCQSmryGallery.AllItems, ComplianceStatus="Noncompliant")
      )=0
     ) &&

    (  // note the opening paren - the next conditions will be OR'ed and then AND'ed with the above

// There must be a minimum of four CQ Titles that start with Firefighter AND that are less than 720 days (basing this off of the existing calculation
// in the ECMmberDteofCQFld texdt label value as it already has the number of days
// NOTE not sure if this should make the toggle true or false.  In this formula, it will make it true.  If false is needed, then either change the >=
// around or apply a ! (Not) in front of it.
    // !  //add this if needed.
        (CountRows(Filter(ECMmbrCQSmryGallery.AllItems, StartsWith(ECMmbrCQTitleFld.Text, "Firefighter") && Value(ECMmberDteofCQFld.Text) < 720)) >=4) 


    ||


// There are more than 4 firefighter ones AND any other item starts with "Live" with less than 720 days - No.  Again, if this condition is met, then the
// formula will be true, if the opposite is needed, add a ! (Not) to the below
    // !  //add this if needed.
        (
            (CountRows(Filter(ECMmbrCQSmryGallery.AllItems, StartsWith(ECMmbrCQTitleFld.Text, "Firefighter"))) >=4 ) &&
            (CountRows(Filter(ECMmbrCQSmryGallery.AllItems, StartsWith(ECMmbrCQTitleFld.Text, "Live") && (Value(ECMmbrDaystoRenewalLbl.Text) < 720))) < 720)
        )  
    
    
// Note the closing paren
    )

 

Looks a lot bigger, but just because I annotated so much in it.  

Without the annotation it is this:

(CountRows(Filter(ECMmbrCQSmryGallery.AllItems, ComplianceStatus="Noncompliant"))=0) &&
(  
    (CountRows(Filter(ECMmbrCQSmryGallery.AllItems, StartsWith(ECMmbrCQTitleFld.Text, "Firefighter") && Value(ECMmberDteofCQFld.Text) < 720)) >=4) ||
    (
        (CountRows(Filter(ECMmbrCQSmryGallery.AllItems, StartsWith(ECMmbrCQTitleFld.Text, "Firefighter"))) >=4 ) &&
        (CountRows(Filter(ECMmbrCQSmryGallery.AllItems, StartsWith(ECMmbrCQTitleFld.Text, "Live") && (Value(ECMmbrDaystoRenewalLbl.Text) < 720))) < 720)
    )  
)

 

Let's see where that goes!

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!
Anonymous
Not applicable

The version I got now sure looks like its working. I've go through a couple dozen Member profiles, they are all manner of CQs and compliance; they all return correct. That said, I'm listening...please see belwo.

 

Can you please make any required changes / updates to the condition based on my revelations below?

 

If All items show "Noncompliant" then false - No. If any ONE item shows "Noncompliant" then false; not 'All' items.
In this formula the concept is if this CountRows returns true (if there are 0 rows with NonCompliant that means there are zero items that are listed as noncompliant - Ok, then disregard my comment above. But, it sure doesn't read like it.🤣

 

If it is 1 (or more) then this will be false. This is the base of all the conditions and the result of this MUST be AND'ed with - Yes, one or more 'Noncompliant' of any time CQ and the toggle default is 'false'

(CountRows(Filter(ECMmbrCQSmryGallery.AllItems, ComplianceStatus="Noncompliant"))=0) &&

( // note the opening paren - the next conditions will be OR'ed and then AND'ed with the above

 There must be a minimum of four CQ Titles that start with Firefighter Nope; There must be a minimum of four AND if there are only four CQTitles then one of them MUST be a Firefighter I or II, and MUST HAVE been inssued within the passed 720 days (to cover the Live Fire Refresher requirement) AND that are less than 720 days (basing this off of the existing calculation.

 

There must be at least four CQs (if there is NO Live Fire Refresher; five CQs if there IS a Live Fire Refresher). If only four CQs ONE CQ Title must StartsWith "Firefighter". There is no need for four 'Firefighter' certifications; Only that one of the four must be a Firefighter I or Firefighter II [which is why we use the StartsWith]).
/ in the ECMmberDteofCQFld text label value as it already has the number of days
// NOTE not sure if this should make the toggle true or false. In this formula, it will make it true. If false is needed, then either change the >= around or apply a ! (Not) in front of it.
// ! //add this if needed.
(CountRows(Filter(ECMmbrCQSmryGallery.AllItems, StartsWith(ECMmbrCQTitleFld.Text, "Firefighter") && Value(ECMmberDteofCQFld.Text) < 720)) >=4)


||


There are more than 4 firefighter (The Gallery only reflects one Member at a time, and each Member is only required to have ONE Firefighter I and or II certification) ones AND any other item starts with "Live" ("Live" and the Live Fire Refresher certs become part of the compliance condition after the first 720 days(Member are required to complete Live Fire training every two years); from then on ALL members must have a current Live Fire Refresher cert along with a valid Firefighter I or II with less than 720 days - No. Again, if this condition is met, then the formula will be true, if the opposite is needed, 
(
(CountRows(Filter(ECMmbrCQSmryGallery.AllItems, StartsWith(ECMmbrCQTitleFld.Text, "Firefighter"))) >=4 ) &&
(CountRows(Filter(ECMmbrCQSmryGallery.AllItems, StartsWith(ECMmbrCQTitleFld.Text, "Live") && (Value(ECMmbrDaystoRenewalLbl.Text) < 720))) < 720)

RandyHayes
Super User
Super User

@Anonymous 

I'm wrapping up for the day here, so let me review this tomorrow and get back to you.

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

Helpful resources

Announcements

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Tuesday Tip: Community User Groups

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   Today's Tip: Community User Groups and YOU Being part of, starting, or leading a User Group can have many great benefits for our community members who want to learn, share, and connect with others who are interested in the Microsoft Power Platform and the low-code revolution.   When you are part of a User Group, you discover amazing connections, learn incredible things, and build your skills. Some User Groups work in the virtual space, but many meet in physical locations, meaning you have several options when it comes to building community with people who are learning and growing together!   Some of the benefits of our Community User Groups are: Network with like-minded peers and product experts, and get in front of potential employers and clients.Learn from industry experts and influencers and make your own solutions more successful.Access exclusive community space, resources, tools, and support from Microsoft.Collaborate on projects, share best practices, and empower each other. These are just a few of the reasons why our community members love their User Groups. Don't wait. Get involved with (or maybe even start) a User Group today--just follow the tips below to get started.For current or new User Group leaders, all the information you need is here: User Group Leader Get Started GuideOnce you've kicked off your User Group, find the resources you need:  Community User Group ExperienceHave questions about our Community User Groups? Let us know! We are here to help you!

Super User of the Month | Ahmed Salih

We're thrilled to announce that Ahmed Salih is our Super User of the Month for April 2024. Ahmed has been one of our most active Super Users this year--in fact, he kicked off the year in our Community with this great video reminder of why being a Super User has been so important to him!   Ahmed is the Senior Power Platform Architect at Saint Jude's Children's Research Hospital in Memphis. He's been a Super User for two seasons and is also a Microsoft MVP! He's celebrating his 3rd year being active in the Community--and he's received more than 500 kudos while authoring nearly 300 solutions. Ahmed's contributions to the Super User in Training program has been invaluable, with his most recent session with SUIT highlighting an incredible amount of best practices and tips that have helped him achieve his success.   Ahmed's infectious enthusiasm and boundless energy are a key reason why so many Community members appreciate how he brings his personality--and expertise--to every interaction. With all the solutions he provides, his willingness to help the Community learn more about Power Platform, and his sheer joy in life, we are pleased to celebrate Ahmed and all his contributions! You can find him in the Community and on LinkedIn. Congratulations, Ahmed--thank you for being a SUPER user!  

Tuesday Tip: Getting Started with Private Messages & Macros

Welcome to TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   This Week's Tip: Private Messaging & Macros in Power Apps Community   Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member!   Our Knowledge Base article about private messaging and macros is the best place to find out more. Check it out today and discover some key tips and tricks when it comes to messages and macros:   Private Messaging: Learn how to enable private messages in your community profile and ensure you’re connected with other community membersMacros Explained: Discover the convenience of macros—prewritten text snippets that save time when posting in forums or sending private messagesCreating Macros: Follow simple steps to create your own macros for efficient communication within the Power Apps CommunityUsage Guide: Understand how to apply macros in posts and private messages, enhancing your interaction with the Community For detailed instructions and more information, visit the full page in your community today:Power Apps: Enabling Private Messaging & How to Use Macros (Power Apps)Power Automate: Enabling Private Messaging & How to Use Macros (Power Automate)  Copilot Studio: Enabling Private Messaging &How to Use Macros (Copilot Studio) Power Pages: Enabling Private Messaging & How to Use Macros (Power Pages)

April 4th Copilot Studio Coffee Chat | Recording Now Available

Did you miss the Copilot Studio Coffee Chat on April 4th? This exciting and informative session with Dewain Robinson and Gary Pretty is now available to watch in our Community Galleries!   This AMA discussed how Copilot Studio is using the conversational AI-powered technology to aid and assist in the building of chatbots. Dewain is a Principal Program Manager with Copilot Studio. Gary is a Principal Program Manager with Copilot Studio and Conversational AI. Both of them had great insights to share with the community and answered some very interesting questions!     As part of our ongoing Coffee Chat AMA series, this engaging session gives the Community the unique opportunity to learn more about the latest Power Platform Copilot plans, where we’ll focus, and gain insight into upcoming features. We’re looking forward to hearing from the community at the next AMA, so hang on to your questions!   Watch the recording in the Gallery today: April 4th Copilot Studio Coffee Chat AMA

Tuesday Tip: Subscriptions & Notifications

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!   This Week: All About Subscriptions & Notifications We don't want you to a miss a thing in the Community! The best way to make sure you know what's going on in the News & Announcements, to blogs you follow, or forums and galleries you're interested in is to subscribe! These subscriptions ensure you receive automated messages about the most recent posts and replies. Even better, there are multiple ways you can subscribe to content and boards in the community! (Please note: if you have created an AAD (Azure Active Directory) account you won't be able to receive e-mail notifications.)   Subscribing to a Category  When you're looking at the entire category, select from the Options drop down and choose Subscribe.     You can then choose to Subscribe to all of the boards or select only the boards you want to receive notifications. When you're satisfied with your choices, click Save.   Subscribing to a Topic You can also subscribe to a single topic by clicking Subscribe from the Options drop down menu, while you are viewing the topic or in the General board overview, respectively.     Subscribing to a Label Find the labels at the bottom left of a post.From a particular post with a label, click on the label to filter by that label. This opens a window containing a list of posts with the label you have selected. Click Subscribe.           Note: You can only subscribe to a label at the board level. If you subscribe to a label named 'Copilot' at board #1, it will not automatically subscribe you to an identically named label at board #2. You will have to subscribe twice, once at each board.   Bookmarks Just like you can subscribe to topics and categories, you can also bookmark topics and boards from the same menus! Simply go to the Topic Options drop down menu to bookmark a topic or the Options drop down to bookmark a board. The difference between subscribing and bookmarking is that subscriptions provide you with notifications, whereas bookmarks provide you a static way of easily accessing your favorite boards from the My subscriptions area.   Managing & Viewing Your Subscriptions & Bookmarks To manage your subscriptions, click on your avatar and select My subscriptions from the drop-down menu.     From the Subscriptions & Notifications tab, you can manage your subscriptions, including your e-mail subscription options, your bookmarks, your notification settings, and your email notification format.     You can see a list of all your subscriptions and bookmarks and choose which ones to delete, either individually or in bulk, by checking multiple boxes.     A Note on Following Friends on Mobile Adding someone as a friend or selecting Follow in the mobile view does not allow you to subscribe to their activity feed. You will merely be able to see your friends’ biography, other personal information, or online status, and send messages more quickly by choosing who to send the message to from a list, as opposed to having to search by username.

Top Solution Authors
Top Kudoed Authors
Users online (3,935)