• highwei
  • NEWBIE
  • 25 Points
  • Member since 2009

  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 4
    Replies

 

I want to know how I can share multiple records at a time . Individual records can be shared by clicking the Sharing button in the record's detail page, but I want to do sharing of multiple records (with same sharing criteria) at a time in the site and not in apex code.

 

I want to know how I can share multiple records at a time . Individual records can be shared by clicking the Sharing button in the record's detail page, but I want to do sharing of multiple records (with same sharing criteria) at a time in the site and not in apex code.

I am trying to use the Data Loader to mass update the RecordTypeID on all Tasks to Null.  I have set the 'Insert Null Value' to True, but it is not working.   Is this possible?  Is there a work around?

Mark
Greetings everyone,
 
I have an object that contains student test data for a given year.  Each student takes maybe a dozen test per year.
The fields are StudentID, Year, Test1, Test2, Test3... .
I created a report that shows the averages for each test for all students in a given school/district (loved how easy that step was).
 
The problem I am facing is that students will be missing some of the tests, so some of the values will be NULL.
 
It appears that on reports Salesforce treats NULLs same as zeros, which of course messes up the calculation of an average score, which in the case of results like {20, Null, 10} is calculated as 10 instead of 15.  I know that XL and Access do not include NULLs in averages, and I am at a loss on how to work around this in Salesforce.
Does anybody know how I can create a 'Average' report summary field that excludes NULL values?
 
If someone has a solution to this I'd be jumping up and down!
 
Thanks,
Martin