User Profile
ganeshsanap
MVP
Joined 7 years ago
User Widgets
Recent Discussions
Re: Sharepoint List - Multiple IF AND function in calculated column
Nash007 Try using this once: =IF(Activities="Activity1",1375,IF(Activities="Activity2",1376,IF(Activities="Activity3",875,IF(Activities="Activity4",875,IF(Activities="Activity5",1375,IF(Activities="Activity6",1375,IF(Activities="Activity7",1375,IF(Activities="Activity8",1375,IF(Activities="Activity9)",1125,IF(Activities="Activity10",1125,IF(Activities="Activity11",1125,IF(Activities="Activity12",1125,0))))))))))))&IF(Activities="Activity13",1375,IF(Activities="Activity14",1375,IF(Activities="Activity15",1375,IF(Activities="Activity16",1675,IF(Activities="Activity17",1375,IF(Activities="Activity18",1125,IF(Activities="Activity19",1125,IF(Activities="Activity21",1125,IF(Activities="Activity22",1125,IF(Activities="Activity23",1875,IF(Activities="Activity24",875,IF(Activities="Activity25",1500,0))))))))))))&IF(Activities="Activity26",1500,IF(Activities="Activity27",1500,IF(Activities="Activity28",1500,IF(Activities="Activity29",1500,IF(Activities="Activity30",1500,IF(Activities="Activity31",1875,IF(Activities="Activity32",1875,IF(Activities="Activity33",1875,IF(Activities="Activity34",1875,IF(Activities="Activity35",1875,IF(Activities="Activity36",1875,IF(Activities="Activity36",1625,0))))))))))))&IF(Activities="Activity37",1375,IF(Activities="Activity38",1375,0)) Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.743Views0likes0CommentsRe: Conditional Formatting in Sharepoint List based on expiry date within 30 days
Beastie1211 Not sure about all your requirements, but try this and see if it works for you: { "$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json", "elmType": "div", "txtContent": "@currentField", "style": { "background-color": "=if(@currentField >= @now-604800000, 'green', if(@currentField > @now-1209600000 && @currentField <= @now-2592000000, 'amber', 'red'))", "color": "white" } } Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.127Views1like0CommentsRe: name of user/group-field is displayed incorrectly: i:0=.f|membership|email address removed for privacy reasons
You have to select DisplayName for DisplayFields property of the combo box control in Power Apps. If you are setting it using formula bar, use like: ["DisplayName"] Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.171Views0likes0CommentsRe: Adding a clickable button to A sharepoint list to update a Yes/No Field
eduarrdonuxus50 Yes, SharePoint JSON formatting supports internal name of columns hence you always have to use the internal name to get/update the column value. Reference: How to find the Internal name of columns in SharePoint Online? Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.115Views0likes0CommentsRe: SharePoint: Microsoft Lists: New Lookup column type support
AnoRnymous This is the last update on this roadmap item: Reference: 100503 - SharePoint: Microsoft Lists - New Lookup column type support Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.41Views1like0CommentsRe: Sharepoint list, Calculated Column, IF syntax error
ChristinaGSPAdmin Try using this formula: =IF(OR([Choice Type]="Choice Type 1",[Choice Type]="Choice Type 2",[Choice Type]="Choice Type 3"),"Optional","Not Optional") Reference: Calculated Column Syntax Error Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.86Views0likes0CommentsRe: SPO library view
ash965 Did you try adding sorting based on Order column? Try following this Microsoft official documentation once and see if it works for you: Use sorting to modify a SharePoint list view Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.110Views0likes2CommentsRe: Calculated column with check if column value contains a string
Eliot_Cole If you have added a list validation formula in the SharePoint list first AND then changed the display name of column later --> SharePoint automatically changes the list validation formula and uses new name of the column in the formula. I just tested this in SharePoint Online list. Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.406Views1like0CommentsRe: Hide column on top level but shown in sub-folder
MvanDuijvenboden Unfortunately, no changes. It is still applied at document library level. Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.261Views0likes0CommentsRe: Using the ID column to generate a number in a calculated column.
mvnair SuzanoSho Note: JSON formatted columns in SharePoint list ONLY shows/displays the value in column. It does NOT actually store the formatted value in column. So, you cannot use those formatted column values for sorting, filtering, etc. in list view OR cannot read those values in other applications like Power Automate, Power Apps, Using SharePoint REST APIs, etc. Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.6.3KViews1like1CommentRe: Comment in Microsoft List
Webguy06 Interesting use case! But unfortunately, I don't think you will be able to achieve your requirements using SharePoint Online / Microsoft Lists out of the box commenting feature. You will not be able to track who read the comments and who didn't (for individual user logins). Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.267Views0likes0CommentsRe: Home button URL change
PeterT965 I think you are talking about the SharePoint site title link, which links to current site URL by default. I don't think there is any way to change it using SharePoint out of the box functionalities in SharePoint Online. However, you can try this if you want to have additional link in the site navigation: Edit SharePoint site navigation Add a new link as per your requirements with Home label/text Follow this documentation for detailed information & steps: Customize the navigation on your SharePoint site Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.233Views0likes1CommentRe: Home button URL change
PeterT965 Can you share a screenshot of "Home" button you are referring? Where is it located exactly on the site? Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.310Views0likes3CommentsRe: How to setup a lookup relationship between 2 fields in separate lists
Ruka_Zill Unfortunately, currently there is no way to achieve your requirements using SharePoint out of the box lookup column functionality. You will have to use custom solution to achieve this functionality. When you create or modify a list item in "Assets" list, you can run a Power Automate flow with trigger like "When item is created or modified" on Assets list. Then you can automate the process of creating/updating information in Users list accordingly using Power automate flow. Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.294Views1like1CommentRe: Need to delete the coulmn in sharepoint
HarishM2155 Is this a SharePoint default list/library column or the custom column you have created? If you are using modern experience, you can try following this documentation as well: SharePoint - Delete a column in a list or library Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.242Views0likes2CommentsRe: Send email to only interested colleagues when an attachment is added
Sung_GeonC If you are trying to run a flow using SharePoint JSON formatting as suggested by Priya, follow this Microsoft official documentation for steps to get Power automate flow ID: SharePoint JSON formatting - create a button to launch a Flow Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.Re: Unable to change "tab title" of SharePoint site
bethhales Can you share screenshot where exactly you want to change the title of site AND where you tried changing it? Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.2.6KViews0likes4CommentsRe: Completely remove the Modern page Banner/Title inside my communication site, similar to the modern p
olavasheim You can also check the rollout information on publicly available site as well at: Microsoft 365 roadmap ID 386904 Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.6.1KViews1like0Comments
Groups
Viva Insights Partners
Access NDA content and participate in discussions tailored to Viva Insights partners.Recent Blog Articles
No content to show