在Excel中限制基于条件格式

时间:2017-04-08 04:14:38

标签: excel-formula excel-2007

我正在寻找带有条件格式公式的excel解决方案。

如果HTTP/1.1 200 OK Content-type: application/json Preference-Applied: outlook.body-content-type="text" Content-length: 1550 { "@odata.context":"https://graph.microsoft.com/beta/$metadata#users('cd209b0b-3f83-4c35-82d2-d88a61820480')/messages(subject,body,bodyPreview,uniqueBody)/$entity", "@odata.etag":"W/\"CQAAABYAAABmWdbhEgBXTophjCWt81m9AAAoZYj4\"", "id":"AAMkAGI1AAAoZCfHAAA=", "subject":"Welcome to our group!", "bodyPreview":"Welcome to our group, Dana! Hope you will enjoy working with us !\r\n\r\nWould you like to choose a day for our orientation from the available times below:\r\n\r\n\r\nDate\r\n Time\r\n\r\nApril 14, 2017\r\n 1-3pm\r\n\r\nApril 21, 2017\r\n 10-12noon\r\n\r\n\r\n\r\nTh", "body":{ "contentType":"text", "content":"Welcome to our group, Dana! Hope you will enjoy working with us [\ud83d\ude0a] [\ud83d\ude0a] [\ud83d\ude0a] [\ud83d\ude0a] [\ud83d\ude0a] !\r\n\r\nWould you like to choose a day for our orientation from the available times below:\r\n\r\n\r\nDate\r\n Time\r\n\r\nApril 14, 2017\r\n 1-3pm\r\n\r\nApril 21, 2017\r\n 10-12noon\r\n\r\n\r\n\r\nThanks!\r\n\r\n" }, "uniqueBody":{ "contentType":"text", "content":"Welcome to our group, Dana! Hope you will enjoy working with us [\ud83d\ude0a] [\ud83d\ude0a] [\ud83d\ude0a] [\ud83d\ude0a] [\ud83d\ude0a] !\r\nWould you like to choose a day for our orientation from the available times below:\r\n\r\nDate\r\n Time\r\n\r\nApril 14, 2017\r\n 1-3pm\r\n\r\nApril 21, 2017\r\n 10-12noon\r\n\r\n\r\nThanks!\r\n" } } 值为Windows\Microsoft.NET\Framework,则我在下一个Column A中输入一个值。如果输入的值在该限制范围内,那么它应该以一种白色突出显示,如果超出限制,则应突出显示为红色。

1 个答案:

答案 0 :(得分:1)

假设一列为A,请选择B:B和HOME>样式 - 条件格式,新规则...,使用公式确定要格式化的单元格格式化此公式的值:

=OR(B1>LEFT(A1,FIND(" ±",A1))+MID(A1,FIND("±",A1)+2,25),B1<LEFT(A1,FIND(" ±",A1))-MID(A1,FIND("±",A1)+2,25))  

格式... ,选择红色填充,确定确定