Status Update
Comments
am...@google.com <am...@google.com> #2
Hello and thanks for your feature request.
If I understand correctly you are asking for something like a custom error category that will throw an error in the UI but not in the logs. Is that right?
I am not sure this is feasible because spreadsheet functions are intentionally limited. For instance, they don't have access to the UI of sheets like scripts do.
Workaround ideas
- If returning a text string is not viable because it is not clear that its an error, could you not implement a conditional formatting rule to turn the cell red?
- Implement the calculation as a script which will summarize the errors in a sidebar UI. You can trigger this with an onEdit trigger or a time based trigger.
- If you need extensive UI customization, web apps could be an option for you.
Information required to continue
Bearing this in mind, to fully understand and complete your feature request, can you address a few points:
- Please provide some context for this request. Why do you need this functionality? What business impact does it have for you?
- Please provide an example of the spreadsheet you are using which demonstrates the workflow you are trying to implement.
- You can filter the logs, please justify why this is not suitable. In what way are you working with the logs?
- You can implement this functionality as a script that has access to the UI, again please justify why this option is not suitable.
- Why is returning a text string is not a viable workaround?
Thank you
mm...@commonsware.com <mm...@commonsware.com> #3
If I understand correctly you are asking for something like a custom error category that will throw an error in the UI but not in the logs. Is that right?
OK, let's take a step back. This feature request is about the
There is no need for "a custom error category." The issue is that custom functions currently have no way to display an error in the spreadsheet without throwing an error that will add noise to the logs.
Custom functions can currently return instances of these objects: Number
, String
, Date
. I think it would be useful to be able to return Error
objects as well, in such a fashion that the error would be shown in the user interface. Currently, an Error
objects returned by a custom function is shown as a blank value. It should show as an error value, with the message
property of that Error object visible when the user hovers over the cell that shows the error.
The value shown in the cell needs to be an error value rather than a text string message, because an actual error value is the only way to ensure that the error gets propagated to cells whose formulas reference the custom function cell.
I am not sure this is feasible because spreadsheet functions are intentionally limited. For instance, they don't have access to the UI of sheets like scripts do.
That is understood. There is no need for the custom function to access the user interface. The feature request is about being able a custom function to return an Error object, and have the message
property of that Error object shown in the user interface. This would let custom function add-on developers avoid the need to throw errors just to make them visible in the user interface.
If returning a text string is not viable because it is not clear that its an error, could you not implement a conditional formatting rule to turn the cell red?
I could do that if I was writing these custom functions just for myself. But that is not what I am doing — I am writing add-ons for the Google Workspace Marketplace. The users of those add-ons will need to be notified when their formula is using incorrect parameters. Currently, the only way I can notify them is by throwing an error. But I do not want to deliberately throw an error — that will add superfluous noise to the logs. I would like to be able show an error in the cell that uses the custom function, without throwing an error.
Please provide some context for this request. Why do you need this functionality? What business impact does it have for you?
I am writing add-ons that extend the functionality of Google Sheets through custom functions. I want to be able to browse the logs to find genuine error events. That is difficult because of the noise created by deliberate throws that are need to report incorrect parameters to the end user.
Please provide an example of the spreadsheet you are using which demonstrates the workflow you are trying to implement.
Please see the sample code posted above.
You can filter the logs, please justify why this is not suitable. In what way are you working with the logs?
The filtering features in GCP Error Reporting cannot distinguish between actual crashes and deliberate throws. It would be best to be able to avoid the need to deliberately throw errors just to get them shown to the end user.
You can implement this functionality as a script that has access to the UI, again please justify why this option is not suitable.
I could do that if I was writing these custom functions just for myself. But that is not what I am doing — I am writing add-ons for the Google Workspace Marketplace.
Why is returning a text string is not a viable workaround?
Because a text string is not an error value, and will not prompt dependent formula cells to propagate the error further as required.
am...@google.com <am...@google.com> #4
Thank you for your detailed response.
In built function error
The in-built spreadsheet functions return user errors as is shown in the image attached titles "in built function error".
Throwing an error
If you throw
an Error
object from a custom function with a function like:
function customFunction2() {
throw Error
}
It results in the image "throwing error which logs error".
Returning an error
If you return
the object:
function customFunction3() {
return Error
}
It results in the image "returning error object" in which the Error
object has been converted into a string.
So your request is for the ability to return
, not throw
, a user error like the in-built functions. Perhaps via a custom error object or to have custom functions be able to handle error objects.
Can you confirm that I have this correct?
Description
[ro.vendor.build.fingerprint]: [google/sailfish/sailfish:10/QPP3.190404.015/5505587:user/release-keys]
* Is this a regression from P to Q?
No
* What device are you using? (for example, Pixel XL)
Pixel
* What are the steps to reproduce the problem? (Please provide the minimal reproducible test case.)
Note: these are the same steps as
1. UnZIP the attached project and import it into Android Studio (tested with 3.4) (note: same sample project as
2. In the Build Variants tool, choose pNormalDebug
3. Run the app from the IDE, and notice that it says "Storage is normal" followed by a number like 14, representing the number of items found in the root of external storage of your test device
4. Examine Logcat, filtering for errors from this process, and see a "Contents of external storage root" message that lists the contents of the root of external storage, which should contain several entries, such as:
2019-05-13 14:49:41.468 4793-4793/com.commonsware.android.installstorage.p.normal E/InstallStorage: Contents of external storage root: Documents, Ringtones, Movies, Cardboard, Android, Music, Download, Alarms, DCIM, Pictures, Podcasts, Notifications
5. Swipe the app away from the task manager or otherwise terminate its process
6. Go into Settings > Apps & notifications > Special app access > Install unknown apps
7. In that screen, click on the Install Storage app and grant it rights to install unknown apps
8. From the launcher, run the Install Storage app, and notice that it says "Storage is normal" followed by 1
9. Examine Logcat, filtering for errors from this process, and see a "Contents of external storage root" message that lists the contents of the root of external storage, which in this case will only show "Android":
2019-05-13 14:50:08.966 5474-5474/com.commonsware.android.installstorage.p.normal E/InstallStorage: Contents of external storage root: Android
* Issue Category e.g. Framework (platform), NDK (platform), Hardware (CPU, GPU, Sensor, Camera), ART (platform), Runtime Permissions etc
Framework
* What was the expected result?
The message in step 8 to be "Storage is sandboxed", as the app's view of external storage is now the sandbox and so Environment.isExternalStorageSandboxed() should return true
* Can you provide the API document where this expected behavior is explained?
* What was the actual result?
The message in step 8 is still "Storage is normal", meaning that Environment.isExternalStorageSandboxed() returned false, even though our view of external storage is now the sandbox.
Somehow, toggling the "Install unknown apps" special permission changes the external storage view to be sandboxed in a way that Environment.isExternalStorageSandboxed() is not detecting. That needs to be fixed, so Environment.isExternalStorageSandboxed() can reliably return the proper value, no matter why the sandbox is in place.
If